-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Feb 26, 2026 at 03:41 AM
-- Server version: 11.4.9-MariaDB-cll-lve-log
-- PHP Version: 8.3.30

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `mrarqpph_oasis`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpo_commentmeta`
--

CREATE TABLE `wpo_commentmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `comment_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_comments`
--

CREATE TABLE `wpo_comments` (
  `comment_ID` bigint(20) UNSIGNED NOT NULL,
  `comment_post_ID` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_comments`
--

INSERT INTO `wpo_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2026-02-02 09:58:56', '2026-02-02 09:58:56', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com/\">Gravatar</a>.', 0, 'post-trashed', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_events`
--

CREATE TABLE `wpo_e_events` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `event_data` text DEFAULT NULL,
  `created_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_notes`
--

CREATE TABLE `wpo_e_notes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) DEFAULT NULL,
  `route_post_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint(20) UNSIGNED DEFAULT NULL,
  `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `author_id` bigint(20) UNSIGNED DEFAULT NULL,
  `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) NOT NULL DEFAULT 'publish',
  `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext DEFAULT NULL,
  `is_resolved` tinyint(1) NOT NULL DEFAULT 0,
  `is_public` tinyint(1) NOT NULL DEFAULT 1,
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_notes_users_relations`
--

CREATE TABLE `wpo_e_notes_users_relations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_submissions`
--

CREATE TABLE `wpo_e_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(60) DEFAULT NULL,
  `hash_id` varchar(60) NOT NULL,
  `main_meta_id` bigint(20) UNSIGNED NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint(20) UNSIGNED NOT NULL,
  `referer` varchar(500) NOT NULL,
  `referer_title` varchar(300) DEFAULT NULL,
  `element_id` varchar(20) NOT NULL,
  `form_name` varchar(60) NOT NULL,
  `campaign_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_ip` varchar(46) NOT NULL,
  `user_agent` text NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_submissions_actions_log`
--

CREATE TABLE `wpo_e_submissions_actions_log` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL,
  `action_name` varchar(60) NOT NULL,
  `action_label` varchar(60) DEFAULT NULL,
  `status` varchar(20) NOT NULL,
  `log` text DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_e_submissions_values`
--

CREATE TABLE `wpo_e_submissions_values` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `submission_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `key` varchar(60) DEFAULT NULL,
  `value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_links`
--

CREATE TABLE `wpo_links` (
  `link_id` bigint(20) UNSIGNED NOT NULL,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) UNSIGNED NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_litespeed_url`
--

CREATE TABLE `wpo_litespeed_url` (
  `id` bigint(20) NOT NULL,
  `url` varchar(500) NOT NULL,
  `cache_tags` varchar(1000) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_litespeed_url_file`
--

CREATE TABLE `wpo_litespeed_url_file` (
  `id` bigint(20) NOT NULL,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  `mobile` tinyint(4) NOT NULL COMMENT 'mobile=1',
  `webp` tinyint(4) NOT NULL COMMENT 'webp=1',
  `expired` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_options`
--

CREATE TABLE `wpo_options` (
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `option_name` varchar(191) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_options`
--

INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'cron', 'a:11:{i:1772096336;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1772099936;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1772099949;a:3:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1772099950;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1772100211;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1772103536;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1772105336;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1772107136;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1772445661;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1772531936;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}', 'on'),
(2, 'siteurl', 'https://mrarif.me/oasis', 'on'),
(3, 'home', 'https://mrarif.me/oasis', 'on'),
(4, 'blogname', 'Oasis Health Care Community', 'on'),
(5, 'blogdescription', 'Welcome', 'on'),
(6, 'users_can_register', '0', 'on'),
(7, 'admin_email', 'arifwebsols@gmail.com', 'on'),
(8, 'start_of_week', '1', 'on'),
(9, 'use_balanceTags', '0', 'on'),
(10, 'use_smilies', '1', 'on'),
(11, 'require_name_email', '1', 'on'),
(12, 'comments_notify', '1', 'on'),
(13, 'posts_per_rss', '10', 'on'),
(14, 'rss_use_excerpt', '0', 'on'),
(15, 'mailserver_url', 'mail.example.com', 'on'),
(16, 'mailserver_login', 'login@example.com', 'on'),
(17, 'mailserver_pass', '', 'on'),
(18, 'mailserver_port', '110', 'on'),
(19, 'default_category', '1', 'on'),
(20, 'default_comment_status', 'open', 'on'),
(21, 'default_ping_status', 'open', 'on'),
(22, 'default_pingback_flag', '1', 'on'),
(23, 'posts_per_page', '10', 'on'),
(24, 'date_format', 'F j, Y', 'on'),
(25, 'time_format', 'g:i a', 'on'),
(26, 'links_updated_date_format', 'F j, Y g:i a', 'on'),
(27, 'comment_moderation', '0', 'on'),
(28, 'moderation_notify', '1', 'on'),
(29, 'permalink_structure', '/%postname%/', 'on'),
(30, 'rewrite_rules', 'a:126:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:46:\"e-floating-buttons/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"e-floating-buttons/([^/]+)/embed/?$\";s:51:\"index.php?e-floating-buttons=$matches[1]&embed=true\";s:39:\"e-floating-buttons/([^/]+)/trackback/?$\";s:45:\"index.php?e-floating-buttons=$matches[1]&tb=1\";s:47:\"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]\";s:54:\"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]\";s:43:\"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?e-floating-buttons=$matches[1]&page=$matches[2]\";s:35:\"e-floating-buttons/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"e-floating-buttons/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"e-floating-buttons/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:47:\"elementor_component/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"elementor_component/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"elementor_component/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"elementor_component/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"elementor_component/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"elementor_component/([^/]+)/embed/?$\";s:52:\"index.php?elementor_component=$matches[1]&embed=true\";s:40:\"elementor_component/([^/]+)/trackback/?$\";s:46:\"index.php?elementor_component=$matches[1]&tb=1\";s:48:\"elementor_component/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&paged=$matches[2]\";s:55:\"elementor_component/([^/]+)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementor_component=$matches[1]&cpage=$matches[2]\";s:44:\"elementor_component/([^/]+)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementor_component=$matches[1]&page=$matches[2]\";s:36:\"elementor_component/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"elementor_component/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"elementor_component/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"elementor_component/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"elementor_component/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=12&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}', 'on'),
(31, 'hack_file', '0', 'on'),
(32, 'blog_charset', 'UTF-8', 'on'),
(33, 'moderation_keys', '', 'off'),
(34, 'active_plugins', 'a:4:{i:0;s:31:\"backup-backup/backup-backup.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:41:\"powerpack-elements/powerpack-elements.php\";}', 'on'),
(35, 'category_base', '', 'on'),
(36, 'ping_sites', 'https://rpc.pingomatic.com/', 'on'),
(37, 'comment_max_links', '2', 'on'),
(38, 'gmt_offset', '0', 'on'),
(39, 'default_email_category', '1', 'on'),
(40, 'recently_edited', 'a:3:{i:0;s:72:\"/home/mrarqpph/public_html/oasis/wp-content/themes/astra-child/style.css\";i:2;s:76:\"/home/mrarqpph/public_html/oasis/wp-content/themes/astra-child/functions.php\";i:3;s:0:\"\";}', 'off'),
(41, 'template', 'astra', 'on'),
(42, 'stylesheet', 'astra-child', 'on'),
(43, 'comment_registration', '0', 'on'),
(44, 'html_type', 'text/html', 'on'),
(45, 'use_trackback', '0', 'on'),
(46, 'default_role', 'subscriber', 'on'),
(47, 'db_version', '60717', 'on'),
(48, 'uploads_use_yearmonth_folders', '1', 'on'),
(49, 'upload_path', '', 'on'),
(50, 'blog_public', '1', 'on'),
(51, 'default_link_category', '2', 'on'),
(52, 'show_on_front', 'page', 'on'),
(53, 'tag_base', '', 'on'),
(54, 'show_avatars', '1', 'on'),
(55, 'avatar_rating', 'G', 'on'),
(56, 'upload_url_path', '', 'on'),
(57, 'thumbnail_size_w', '150', 'on'),
(58, 'thumbnail_size_h', '150', 'on'),
(59, 'thumbnail_crop', '1', 'on'),
(60, 'medium_size_w', '300', 'on'),
(61, 'medium_size_h', '300', 'on'),
(62, 'avatar_default', 'mystery', 'on'),
(63, 'large_size_w', '1024', 'on'),
(64, 'large_size_h', '1024', 'on'),
(65, 'image_default_link_type', 'none', 'on'),
(66, 'image_default_size', '', 'on'),
(67, 'image_default_align', '', 'on'),
(68, 'close_comments_for_old_posts', '0', 'on'),
(69, 'close_comments_days_old', '14', 'on'),
(70, 'thread_comments', '1', 'on'),
(71, 'thread_comments_depth', '5', 'on'),
(72, 'page_comments', '0', 'on'),
(73, 'comments_per_page', '50', 'on'),
(74, 'default_comments_page', 'newest', 'on'),
(75, 'comment_order', 'asc', 'on'),
(76, 'sticky_posts', 'a:0:{}', 'on'),
(77, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(78, 'widget_text', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(79, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}', 'auto'),
(80, 'uninstall_plugins', 'a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:47:\"LiteSpeed\\Activation::uninstall_litespeed_cache\";s:31:\"backup-backup/backup-backup.php\";s:21:\"bmi_uninstall_handler\";}', 'off'),
(81, 'timezone_string', '', 'on'),
(82, 'page_for_posts', '22', 'on'),
(83, 'page_on_front', '12', 'on'),
(84, 'default_post_format', '0', 'on'),
(85, 'link_manager_enabled', '0', 'on'),
(86, 'finished_splitting_shared_terms', '1', 'on'),
(87, 'site_icon', '60', 'on'),
(88, 'medium_large_size_w', '768', 'on'),
(89, 'medium_large_size_h', '0', 'on'),
(90, 'wp_page_for_privacy_policy', '3', 'on'),
(91, 'show_comments_cookies_opt_in', '1', 'on'),
(92, 'admin_email_lifespan', '1785578336', 'on'),
(93, 'disallowed_keys', '', 'off'),
(94, 'comment_previously_approved', '1', 'on'),
(95, 'auto_plugin_theme_update_emails', 'a:0:{}', 'off'),
(96, 'auto_update_core_dev', 'enabled', 'on'),
(97, 'auto_update_core_minor', 'enabled', 'on'),
(98, 'auto_update_core_major', 'enabled', 'on'),
(99, 'wp_force_deactivated_plugins', 'a:0:{}', 'on'),
(100, 'wp_attachment_pages_enabled', '0', 'on'),
(101, 'wp_notes_notify', '1', 'on'),
(102, 'initial_db_version', '60717', 'on'),
(103, 'wpo_user_roles', 'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:68:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:26:\"create_notes_elementor-pro\";b:1;s:24:\"edit_notes_elementor-pro\";b:1;s:26:\"delete_notes_elementor-pro\";b:1;s:24:\"read_notes_elementor-pro\";b:1;s:31:\"edit_others_notes_elementor-pro\";b:1;s:33:\"delete_others_notes_elementor-pro\";b:1;s:39:\"read_others_private_notes_elementor-pro\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}', 'on'),
(104, 'fresh_site', '0', 'off'),
(105, 'user_count', '2', 'off'),
(106, 'widget_block', 'a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}', 'auto'),
(107, 'sidebars_widgets', 'a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:13:\"array_version\";i:3;}', 'auto'),
(108, 'widget_pages', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(109, 'widget_calendar', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(110, 'widget_archives', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(111, 'widget_media_audio', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(112, 'widget_media_image', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(113, 'widget_media_gallery', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(114, 'widget_media_video', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(115, 'widget_meta', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(116, 'widget_search', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(117, 'widget_recent-posts', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(118, 'widget_recent-comments', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(119, 'widget_tag_cloud', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(120, 'widget_nav_menu', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(121, 'widget_custom_html', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(122, '_transient_wp_core_block_css_files', 'a:2:{s:7:\"version\";s:3:\"6.9\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}', 'on');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(172, 'astra-settings', 'a:30:{s:18:\"theme-auto-version\";s:6:\"4.12.1\";s:22:\"is_theme_queue_running\";b:0;s:16:\"body-font-family\";s:21:\"\'DM Sans\', sans-serif\";s:14:\"font-size-body\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:20:\"headings-font-family\";s:23:\"\'Open Sans\', sans-serif\";s:17:\"body-font-variant\";s:11:\"300,400,500\";s:21:\"headings-font-variant\";s:15:\"500,600,700,800\";s:12:\"font-size-h1\";a:6:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h2\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h3\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h4\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h5\";a:6:{s:7:\"desktop\";i:24;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:12:\"font-size-h6\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"site-layout-outside-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:25:\"content-bg-obj-responsive\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:20:\"global-color-palette\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#108490\";i:1;s:7:\"#ef4922\";i:2;s:7:\"#000000\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f0f7f8\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#fec010\";}s:4:\"flag\";b:0;}s:10:\"link-color\";s:25:\"var(--ast-global-color-0)\";s:11:\"theme-color\";s:7:\"#106e79\";s:12:\"button-color\";s:25:\"var(--ast-global-color-4)\";s:14:\"button-h-color\";s:25:\"var(--ast-global-color-4)\";s:15:\"button-bg-color\";s:25:\"var(--ast-global-color-1)\";s:17:\"button-bg-h-color\";s:25:\"var(--ast-global-color-0)\";s:20:\"theme-button-padding\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"36\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"36\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:37:\"theme-button-border-group-border-size\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:20:\"button-radius-fields\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"font-family-button\";s:21:\"\'Poppins\', sans-serif\";s:16:\"font-size-button\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:18:\"font-extras-button\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:30:\"single-post-ast-content-layout\";s:20:\"full-width-container\";s:31:\"archive-post-ast-content-layout\";s:20:\"full-width-container\";}', 'on'),
(173, 'allowed_astra_notices', 'a:2:{i:0;s:21:\"astra-sites-on-active\";i:1;s:18:\"astra-optin-notice\";}', 'auto'),
(174, 'astra_analytics_installed_time', '1770026528', 'off'),
(2155, '_transient_timeout_astra-theme-cron-test-ok', '1772098487', 'off'),
(2156, '_transient_astra-theme-cron-test-ok', '1', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(177, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:1:{s:9:\"elementor\";a:35:{s:4:\"name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";s:4:\"slug\";s:9:\"elementor\";s:7:\"version\";s:6:\"3.35.5\";s:6:\"author\";s:64:\"<a href=\"https://profiles.wordpress.org/elemntor/\">Elementor</a>\";s:14:\"author_profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:12:\"contributors\";a:1:{s:8:\"elemntor\";a:3:{s:7:\"profile\";s:40:\"https://profiles.wordpress.org/elemntor/\";s:6:\"avatar\";s:120:\"https://secure.gravatar.com/avatar/7d70f15d78757f876d1847a8f87dd93e1d9c168264b4aeeaf72058656690d05b?s=96&d=monsterid&r=g\";s:12:\"display_name\";s:9:\"Elementor\";}}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"6.9.1\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:6:\"rating\";i:90;s:7:\"ratings\";a:5:{i:5;i:6104;i:4;i:218;i:3;i:113;i:2;i:107;i:1;i:647;}s:11:\"num_ratings\";i:7189;s:11:\"support_url\";s:47:\"https://wordpress.org/support/plugin/elementor/\";s:15:\"support_threads\";i:86;s:24:\"support_threads_resolved\";i:71;s:15:\"active_installs\";i:10000000;s:12:\"last_updated\";s:21:\"2026-02-17 2:42pm GMT\";s:5:\"added\";s:10:\"2016-05-30\";s:8:\"homepage\";s:87:\"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash\";s:8:\"sections\";a:6:{s:11:\"description\";s:25408:\"<p><iframe loading=\"lazy\" title=\"This is Elementor | The complete website building experience for WordPress\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/ROEC0CPRO3w?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe></p>\n<h4>THE #1 NO CODE DRAG &amp; DROP WORDPRESS WEBSITE BUILDER POWERING 20M+ WEBSITES WORLDWIDE, NOW WITH AI.</h4>\n<p>Elementor, the leading WordPress website creation platform, empowers you to build professional, pixel-perfect websites seamlessly with its no-code, drag-and-drop Editor.</p>\n<p>Supporting the full website lifecycle, Elementor enables you to confidently build, optimize, and manage your website with extended capabilities such as AI-powered creation, image optimization, transactional email delivery, accessibility tools, performance boosters, and more.</p>\n<p>Unlock all features with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-pro-features/\" rel=\"nofollow ugc\">Elementor One</a></strong>.</p>\n<p>Need fast and secure cloud hosting for your Elementor site? Try out <strong><a href=\"https://elemn.to/repo-hosting\" rel=\"nofollow ugc\">Elementor Host</a></strong> Powered by Google Cloud &amp; Cloudflare. 4.9/5 TrustPilot score.</p>\n<h3>🌟 Create Professional Stunning Websites</h3>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Intuitive Drag &amp; Drop Builder</a></strong>: Build any website with our no-code, drag-and-drop Editor. Achieve design precision with full control over layout and style.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-feature-page/\" rel=\"nofollow ugc\">Pixel-Perfect Design Tools</a></strong>: Upload SVGs, apply masks, gradients, box shadows, headline effects, shape dividers, and use built-in CSS controls for advanced customization.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-library-full-website-kit/\" rel=\"nofollow ugc\">Template Library</a></strong>: Apply complete website kits for instant setups, or choose from a vast library of single pages, blocks, and pop-up templates.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-editor/\" rel=\"nofollow ugc\">Advanced Widgets</a></strong>: Access over 40 FREE widgets, including heading, image, text editor, video, button, gallery, carousels, and more.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-ai/\" rel=\"nofollow ugc\">AI Capabilities</a></strong>: Revolutionize your design and content creation process with native AI integration. Instantly create sections, text, code, and images.</li>\n</ul>\n<h4>🗝️ Key features:</h4>\n<ul>\n<li><strong><a href=\"https://go.elementor.com/feature-page-global-settings/\" rel=\"nofollow ugc\">Design System</a></strong>: Use Elementor’s Design System for consistent colors, typography, and design elements, ensuring a cohesive, professional look.</li>\n<li><strong><a href=\"https://go.elementor.com/feature-page-responsive-design/\" rel=\"nofollow ugc\">Responsive Design</a></strong>: Optimize your design for every device with custom breakpoints, ensuring a seamless desktop, tablet, and mobile experience.</li>\n<li><strong>Mask Shapes</strong>: Turning any element, like an image or video, into whatever shape you desire to create standout designs.</li>\n<li><strong>CSS Transform</strong>: Use CSS Transform to rotate, scale, and skew elements, adding dynamic styling to your site.</li>\n<li><strong>Entrance Animations</strong>: Add entrance animations to elements to create engaging and interactive user experiences.</li>\n<li><strong><a href=\"https://elementor.com/features/#SaveBackup\" rel=\"nofollow ugc\">Revision History</a></strong>: Elementor’s Revision History feature enables users to track and revert to previous versions of their designs, providing peace of mind and flexibility during the creative process.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-developers-developers-website/\" rel=\"nofollow ugc\">Developer-Friendly</a></strong>: Equipped with extensive documentation, API, developer tools, and custom code areas, Elementor offers a conducive environment for developers to extend its capabilities and create custom solutions.</li>\n<li><strong><a href=\"https://elementor.com/features/contact-button/\" rel=\"nofollow ugc\">Floating Buttons</a></strong>: Enhance user interaction with customizable, floating action buttons that stay in view as users scroll.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-industry-leading-theme-builder/\" rel=\"nofollow ugc\">Theme Builder</a> [Pro]</strong>: Design every part of your site—headers, footers, posts, and archives—for complete control over appearance.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-popup-builder/\" rel=\"nofollow ugc\">Popup Builder</a> [Pro]</strong>: Create eye-catching popups with Elementor’s Popup Builder, equipped with advanced targeting and triggering options to optimize user engagement and conversions.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-professional-form-builder-and-submission-log/\" rel=\"nofollow ugc\">Forms</a> [Pro]</strong>: Design and integrate custom forms, utilizing advanced features and integrations to capture and manage submissions effectively.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-woocommerce-builder/\" rel=\"nofollow ugc\">WooCommerce Builder</a> [Pro]</strong>:  Integrate Elementor with WooCommerce to design custom product pages, shop layouts, archives, carts, checkout pages, my account, and more, enhancing your store’s visual appeal and functionality.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-dynamic-content/\" rel=\"nofollow ugc\">Dynamic Content</a> [Pro]</strong>: Leverage dynamic content capabilities to create personalized and interactive web experiences by connecting your designs to various data sources.</li>\n<li><strong><a href=\"https://go.elementor.com/features-page-notes/\" rel=\"nofollow ugc\">Notes</a> [Pro]</strong>: Enhance team collaboration by using Elementor’s Notes feature to leave feedback and comments directly on the design interface.</li>\n<li><strong>Custom Code [Pro]</strong>: Insert custom code to extend the functionality of your site, offering flexibility for advanced customizations.</li>\n<li><strong>Custom CSS [Pro]</strong>: Apply Custom CSS to fine-tune the styling of elements, ensuring precise control over the design aspects.</li>\n<li><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-pro-features-motion-effects/\" rel=\"nofollow ugc\">Motion Effects</a> [Pro]</strong>: Add advanced motion effects to elements for a more dynamic and engaging user experience.</li>\n<li><strong>Custom Fonts &amp; Icons [Pro]</strong>: Upload and use custom fonts and icons to match your brand’s identity.</li>\n</ul>\n<h4>😍 Elementor FREE widgets</h4>\n<p>Unlock the potential of Elementor with our comprehensive suite of free widgets and tools, designed to empower your website creation process and elevate your design capabilities:</p>\n<ul>\n<li><strong>Heading</strong>. Add eye-catching headlines.</li>\n<li><strong>Image</strong>. Control the size, opacity and more.</li>\n<li><strong>Text Editor</strong>. Just like the WordPress text editor.</li>\n<li><strong>Video</strong>. Add YouTube, Vimeo, VideoPress, Dailymotion or self-hosted videos.</li>\n<li><strong>Button</strong>. Create interactive buttons.</li>\n<li><strong>Link in Bio</strong>. Build link in bio components to promote your business / services.</li>\n<li><strong>Image Box</strong>. A box with image, headline and text.</li>\n<li><strong>Testimonials</strong>. Customer testimonials.</li>\n<li><strong>Icon</strong>. Place one or more of 600+ icons available.</li>\n<li><strong>Icon Box</strong>. An icon, headline, and text with one widget.</li>\n<li><strong>Social Icons</strong>. Link to your social pages with the Facebook/X (formerly Twitter) icons.</li>\n<li><strong>Image Gallery</strong>. Display your images in a grid.</li>\n<li><strong>Image Carousel</strong>. Create rotating carousels or sliders for chosen images.</li>\n<li><strong>Icon List</strong>. Use any icon to create a bullet list.</li>\n<li><strong>Counter</strong>. Show numbers in an escalating manner.</li>\n<li><strong>Progress Bar</strong>. Include an escalating progress bar.</li>\n<li><strong>Nested Tabs</strong>. Display content in vertical or horizontal tabs.</li>\n<li><strong>Nested Accordion</strong>. Display any type of content in collapsible sections.</li>\n<li><strong>Rating</strong>. Display how many stars (or another icon) other visitors gave.</li>\n<li><strong>Alert</strong>. Include a colored alert box to draw visitor’s attention.</li>\n<li><strong>HTML</strong>. Insert code into the page.</li>\n<li><strong>Shortcode</strong>. Insert shortcodes from any plugin into the page.</li>\n<li><strong>Menu Anchor</strong>. Link any menu to this anchor.</li>\n<li><strong>Read More</strong>. Set the Read More cut-off for the excerpt in archive pages.</li>\n<li><strong>Sidebar</strong>. Add sidebars onto the page.</li>\n<li><strong>Google Maps</strong>. Embed maps into the page.</li>\n<li><strong>SoundCloud</strong>. Add SoundCloud audio bits.</li>\n<li><strong>Divider</strong>. Separate content with a designed divider.</li>\n<li><strong>Spacer</strong>. Add space between elements.</li>\n<li><strong>Text Path</strong>. Attach your text to a path.</li>\n<li><strong>And counting&#8230;</strong></li>\n</ul>\n<h3>🚀 Enhance Your Website</h3>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-performance-performance-page/\" rel=\"nofollow ugc\">High-Performing Websites</a></strong>: Website performance impacts your visitor’s experience and search result ranking. Elementor, in partnership with Google Chrome, continuously enhances performance without compromising design.</p>\n<p><strong>Key features include:</strong></p>\n<ul>\n<li><strong>Reduced DOM Output</strong>: Streamlined HTML structure for faster rendering.</li>\n<li><strong>Improved Media File Loading</strong>: Optimized loading of images, videos, and other media assets.</li>\n<li><strong>Reduced CSS and JS Files</strong>: Minimized stylesheets and scripts individually loaded only on demand for quicker loading times.</li>\n<li><strong>Lazy Loading</strong>: Deferred loading of non-critical resources to improve initial page load speed.</li>\n<li><strong>Faster Font Loading</strong>: Efficient delivery of web fonts to enhance text rendering speed.</li>\n<li><strong>Optimized Front-End Asset Loading</strong>: Efficient loading of assets like JavaScript and CSS to minimize render-blocking.</li>\n<li><strong>Element Caching</strong>: Cache frequently accessed design elements to reduce server response time and enhance overall performance.</li>\n</ul>\n<h3>🔥 Elementor Editor Pro Features</h3>\n<p>Create unparalleled websites while saving time, money and resources with <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a>’s full website builder. Get access to 100+ professional widgets, features, and tools.</p>\n<p><strong>Editor Pro Design Widgets:</strong></p>\n<ol>\n<li><strong>Posts</strong>: Display your blog posts with customizable layouts and styles.</li>\n<li><strong>Share Buttons</strong>: Allow visitors to easily share your content on various social media platforms.</li>\n<li><strong>Portfolio</strong>: Showcase your work or projects with stunning portfolio layouts.</li>\n<li><strong>Slides</strong>: Create dynamic slideshows with custom animations and transitions.</li>\n<li><strong>Form</strong>: Design and customize advanced forms for user interaction and data collection.</li>\n<li><strong>Login</strong>: Add a login form or user registration module to your website.</li>\n<li><strong>Nav Menu</strong>: Customize and style your website&#8217;s navigation menu for better user experience.</li>\n<li><strong>Animated Headline</strong>: Create attention-grabbing headlines with animated effects.</li>\n<li><strong>Price Table</strong>: Display pricing plans or packages in a structured and visually appealing format.</li>\n<li><strong>Price List</strong>: Showcase a list of prices or services with customizable styling options.</li>\n<li><strong>Gallery</strong>: Create beautiful image galleries with various layout options and lightbox support.</li>\n<li><strong>Flip Box</strong>: Add interactive flip animations to highlight content or features.</li>\n<li><strong>Call to Action</strong>: Encourage user interaction and conversions with compelling call-to-action sections.</li>\n<li><strong>Media Carousel</strong>: Showcase a carousel of media files such as images or videos.</li>\n<li><strong>Testimonial Carousel</strong>: Display client testimonials in a carousel format for social proof.</li>\n<li><strong>Nested Carousel</strong>: Create nested carousels for more complex content organization.</li>\n<li><strong>Loop Carousel</strong>: Display content in a looped carousel for continuous viewing.</li>\n<li><strong>Table Of Content</strong>: Generate a table of contents for longer articles or guides to improve navigation.</li>\n<li><strong>Countdown</strong>: Add countdown timers to create urgency for promotions or events.</li>\n<li><strong>Facebook Page</strong>: Embed your Facebook page feed or content onto your website.</li>\n<li><strong>Blockquote</strong>: Highlight quotes or testimonials with stylish formatting options.</li>\n<li><strong>Template</strong>: Save and reuse design templates for consistent branding and layout.</li>\n<li><strong>Reviews</strong>: Showcase customer reviews and ratings to build trust and credibility.</li>\n<li><strong>Facebook Button</strong>: Add buttons to promote interactions with your Facebook page or content.</li>\n<li><strong>Facebook Embed</strong>: Embed Facebook posts or content onto your website.</li>\n<li><strong>Facebook Comments</strong>: Enable Facebook comments on your website&#8217;s pages or posts.</li>\n<li><strong>PayPal Button</strong>: Integrate PayPal buttons for easy online payments.</li>\n<li><strong>Stripe Button</strong>: Integrate Stripe payment buttons to facilitate secure online transactions.</li>\n<li><strong>Lottie Widget</strong>: Add Lottie animations to enhance visual appeal and engagement.</li>\n<li><strong>Code Highlight</strong>: Display code snippets with syntax highlighting for better readability.</li>\n<li><strong>Video Playlist</strong>: Create and customize playlists for video content on your website.</li>\n<li><strong>Mega Menu</strong>: Customize advanced menus for better navigation and displaying complex content.</li>\n<li><strong>Off Canvas</strong>: Create off-canvas areas that slide in to show extra info or menus without cluttering the main layout.</li>\n</ol>\n<p><strong>Editor Pro Theme Widgets:</strong></p>\n<p>Build and customize all the key parts of your website including headers, footers, 404 page, global archives, and more&#8230;</p>\n<ol>\n<li><strong>Post Title</strong>: Customize the title of individual blog posts or pages.</li>\n<li><strong>Post Excerpt</strong>: Display a brief summary or teaser of your blog posts.</li>\n<li><strong>Post Content</strong>: Customize the main content area of your blog posts or pages.</li>\n<li><strong>Featured Image</strong>: Set and customize featured images for blog posts or pages.</li>\n<li><strong>Author Box</strong>: Display author information and bios on blog posts.</li>\n<li><strong>Post Comments</strong>: Customize the appearance and functionality of comments sections on your website.</li>\n<li><strong>Post Navigation</strong>: Add navigation links to adjacent posts for easy browsing.</li>\n<li><strong>Post Info</strong>: Display additional information about blog posts, such as author and date.</li>\n<li><strong>Site Logo</strong>: Upload and customize your website&#8217;s logo for branding purposes.</li>\n<li><strong>Site Title</strong>: Customize the title of your website.</li>\n<li><strong>Page Title</strong>: Customize the title of individual pages.</li>\n<li><strong>Search Bar</strong>: Add a search bar to allow users to search your website&#8217;s content.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation.</li>\n<li><strong>Sitemap</strong>: Generate a sitemap for better search engine indexing and user navigation.</li>\n<li><strong>Loop Grid</strong>: Design and customize grid layouts for blog post archives or product listings.</li>\n</ol>\n<p><strong>Editor Pro WooCommerce Widgets:</strong></p>\n<p>Design and customize a complete online shopping experience across your entire website.</p>\n<ol>\n<li><strong>Product</strong>: Display individual products with customizable layouts and styles.</li>\n<li><strong>Breadcrumbs</strong>: Display hierarchical navigation paths for better user navigation within your store.</li>\n<li><strong>Product Title</strong>: Customize the title of individual products.</li>\n<li><strong>Product Images</strong>: Set and customize images for product listings.</li>\n<li><strong>Product Price</strong>: Display the price of individual products.</li>\n<li><strong>Add To Cart</strong>: Add customizable add to cart buttons for easy purchasing.</li>\n<li><strong>Product Rating</strong>: Display ratings and reviews for products.</li>\n<li><strong>Product Stock</strong>: Display stock availability for products.</li>\n<li><strong>Product Meta</strong>: Display additional information about products, such as SKU and categories.</li>\n<li><strong>Product Content</strong>: Customize the main content area of product descriptions.</li>\n<li><strong>Short Description</strong>: Display brief summaries or teasers of products.</li>\n<li><strong>Product Data Tabs</strong>: Organize product information into tabbed sections for better organization.</li>\n<li><strong>Additional Information</strong>: Display additional details about products, such as dimensions and weight.</li>\n<li><strong>Product Related</strong>: Showcase related products to encourage additional purchases.</li>\n<li><strong>Upsells</strong>: Promote upsell products to increase average order value.</li>\n<li><strong>Products</strong>: Display a grid or list of products with customizable settings.</li>\n<li><strong>Custom Add To Cart</strong>: Customize the add to cart button for specific products.</li>\n<li><strong>WooCommerce Pages</strong>: Design and customize WooCommerce-specific pages, such as the cart and checkout pages.</li>\n<li><strong>Product Categories</strong>: Display product categories for easy navigation within your store.</li>\n<li><strong>Menu Cart</strong>: Display a cart icon in your navigation menu for easy access to the shopping cart.</li>\n<li><strong>Cart</strong>: Customize the appearance and functionality of the shopping cart page.</li>\n<li><strong>Checkout</strong>: Customize the appearance and functionality of the checkout page.</li>\n<li><strong>My Account</strong>: Customize the appearance and functionality of the customer account area.</li>\n<li><strong>Purchase Summary</strong>: Display a summary of purchases during the checkout process.</li>\n<li><strong>WooCommerce Notices</strong>: Customize the appearance and functionality of WooCommerce notices, such as order confirmation messages.</li>\n</ol>\n<p>Build professional websites with <strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-pro-elementor-pro/\" rel=\"nofollow ugc\">Elementor Editor Pro</a></strong>!</p>\n<h4>🔒 SECURITY AND COMPLIANCE</h4>\n<p>Elementor places a paramount focus on security, evident through our acquisition of industry certifications such as ISO/IEC 27001, ISO/IEC 27017, ISO/IEC 27018, ISO/IEC 27701, and SOC 2 Type II. These certifications underscore our commitment to implementing robust security measures, and highlight our dedication to adhering to recognized industry standards.</p>\n<p>We encourage ethical security research through our <a href=\"https://go.elementor.com/wp-repo-description-tab-bug-crowd-bug-bounty-program/\" rel=\"nofollow ugc\">Bug Bounty program</a>. We collaborate with leading bug bounty services to provide opportunities for researchers to report vulnerabilities in our services. Our bounty programs include a triage team available 24/7/365.</p>\n<p>For more information: <a href=\"https://go.elementor.com/trust-center/\" rel=\"nofollow ugc\">Trust Center</a>.</p>\n<h4>♿ Accessibility Best Practices</h4>\n<p>Elementor offers accessibility tools and enhancements to help you provide a better experience for all users. Including HTML 5 semantic, full keyboard navigation menu, ongoing improvement of features, widget, and more.</p>\n<h4>🌐 Translated to 63+ languages, includes RTL support</h4>\n<p>Elementor supports multiple languages, typographies, and RTL, with editor translations in <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">over 63 languages</a>.</p>\n<p>It’s also compatible with WPML, Polylang, TranslatePress, Weglot, and more. To contribute, add a new language via <a href=\"https://translate.wordpress.org\" rel=\"nofollow ugc\">translate.wordpress.org</a>. See our guide on <a href=\"https://go.elementor.com/wp-repo-description-tab-help-center-translate/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n<h4>⏩ Use of 3rd Party Services</h4>\n<p>To improve the user experience, Elementor may use the following 3rd party services if the required feature is enabled:</p>\n<ul>\n<li>Google Fonts – are loaded to add additional fonts to your website. Google’s <a href=\"https://policies.google.com/terms\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://policies.google.com/privacy\" rel=\"nofollow ugc\">Privacy Policy</a> apply.</li>\n<li>Some Elementor features require loading assets from Elementor.com. These assets are not used for tracking unless explicitly mentioned, requiring your approval and manual opt-in. Learn more in our <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-terms/\" rel=\"nofollow ugc\">TOS</a> and <a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-plugin-privacy/\" rel=\"nofollow ugc\">Privacy Policy</a>.</li>\n</ul>\n<h4>📧 Related Products by Elementor</h4>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-io/\" rel=\"nofollow ugc\">Image Optimizer</a></strong>: Superior image compression for faster, high-quality website performance.</p>\n<p><strong><a href=\"https://go.elementor.com/wp-repo-description-tab-elementor-sm/\" rel=\"nofollow ugc\">Site Mailer</a></strong>: Reliable email management without SMTP plugins, keeping your communications streamlined and efficient.</p>\n<p><strong><a href=\"http://go.elementor.com/editor-acc-wp-repo\" rel=\"nofollow ugc\">Ally</a></strong>: Enhances website usability for individuals with disabilities. Ally is designed to help web creators make their websites more inclusive. It scans, detects, and remediate key accessibility violations, working seamlessly on all WordPress and Elementor websites.</p>\n<h4>📣 See What Our Users Have to Say</h4>\n<blockquote>\n<p>“Elementor is hands down the best page builder out there” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/elementor-is-hands-down-the-best-page-builder-out-there/\" rel=\"ugc\">Graphicvision1</a></em></p>\n<p>“An incredibly user-friendly plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/a-wonderful-experience/\" rel=\"ugc\">Hyeyoga</a></em></p>\n<p>“Easily, my most used WP plugin” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/easily-my-most-used-wp-plugin/\" rel=\"ugc\">Xander Venske</a></em></p>\n<p>“I upgraded to the Pro version and just love this plugin!” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/love-elementor-17/\" rel=\"ugc\">Andybarn56</a></em></p>\n<p>“Excellent product with great tech support” – ★★★★★ <em><a href=\"https://wordpress.org/support/topic/excellent-product-with-great-tech-support/\" rel=\"ugc\">Martywilsonnj</a></em></p>\n</blockquote>\n<p><em><a href=\"https://wordpress.org/support/plugin/elementor/reviews/?filter=5\" rel=\"ugc\">More testimonials</a></em></p>\n<h4>🌍 Join a Global Community</h4>\n<p>Join a global community that helps each other achieve their goals.</p>\n<ul>\n<li><a href=\"https://elemn.to/discord\" rel=\"nofollow ugc\">Discord Community</a> – Chat with Web Creators, discuss specific topics in dedicated channels.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-facebook-group/\" rel=\"nofollow ugc\">Facebook Community</a> &#8211; Over 150K+ members, offering support, advice, feedback, and tutorials.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-github-repo/\" rel=\"nofollow ugc\">GitHub Community</a> &#8211; Get information about releases, request features, or report a bug.</li>\n<li><a href=\"https://go.elementor.com/wp-repo-description-tab-addons-dozens-of-elementor-addons/\" rel=\"nofollow ugc\">Elementor Addons, Themes, and Kits</a> Themes and Kits  &hellip;</li>\n</ul>\n\";s:12:\"installation\";s:1461:\"<h4>Minimum Requirements</h4>\n<ul>\n<li>WordPress 6.5 or greater</li>\n<li>PHP version 7.4 or greater</li>\n<li>MySQL version 5.0 or greater</li>\n</ul>\n<h4>Recommended Requirements</h4>\n<ul>\n<li>PHP version 8.1 or greater</li>\n<li>MySQL version 5.6 or greater</li>\n<li>WordPress Memory limit of 64 MB or greater (128 MB or higher is preferred)</li>\n</ul>\n<p><iframe loading=\"lazy\" title=\"Installing Elementor on WordPress\" width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9EZ159ryFNs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe></p>\n<h4>Installation</h4>\n<ol>\n<li>Install using the WordPress built-in Plugin installer, or Extract the zip file and drop the contents in the <code>wp-content/plugins/</code> directory of your WordPress installation.</li>\n<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>\n<li>Go to Pages &gt; Add New</li>\n<li>Press the &#8216;Edit with Elementor&#8217; button.</li>\n<li>Now you can drag and drop widgets from the left panel onto the content area, as well as add new sections and columns that make up the page structure.</li>\n</ol>\n<p>For documentation and tutorials visit our <a href=\"https://elementor.com/help/?utm_source=wp-repo&amp;utm_medium=link&amp;utm_campaign=readme\" rel=\"nofollow ugc\">Knowledge Base</a>.</p>\n\";s:3:\"faq\";s:5070:\"\n<dt id=\"how%20do%20i%20install%20elementor%20editor%3F\">\nHow do I install Elementor Editor?\n</h4>\n<p>\n<p>To install the free version of Elementor Editor, follow the steps below:<br />\nFrom your WordPress dashboard -&gt; Go to Plugins -&gt; Click on &#8216;Add new&#8217;-&gt; In the Search field, enter Elementor and choose Elementor website builder.<br />\nPress install -&gt; After installation, click Activate.</p>\n</p>\n<dt id=\"does%20elementor%20editor%20work%20with%20all%20the%20themes%3F\">\nDoes Elementor Editor work with all the themes?\n</h4>\n<p>\n<p>Elementor Editor works all the themes that respect the coding standards of WordPress set by its Codex. It is recommended to use Elementor&#8217;s <a href=\"https://go.elementor.com/wp-repo-description-tab-hello-theme-hello-theme/\" rel=\"nofollow ugc\">Hello Theme</a>, a lightweight blank canvas, to enjoy full flexibility when using Elementor Editor, and optimize your experience.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20gutenberg%3F\">\nIs Elementor Editor compatible with Gutenberg?\n</h4>\n<p>\n<p>Elementor Editor and Gutenberg work seamlessly together. As a user, you can easily decide which editor to use at every point while editing your site.</p>\n</p>\n<dt id=\"can%20i%20create%20an%20online%20store%3F\">\nCan I create an online store?\n</h4>\n<p>\n<p>Yes, with the Elementor Editor Pro WooCommerce Builder you can customize every page of your store to create an amazing customer experience that drives sales.</p>\n</p>\n<dt id=\"does%20it%20work%20with%20other%20wordpress%20plugins%3F\">\nDoes it work with other WordPress plugins?\n</h4>\n<p>\n<p>It works with almost all the plugins. If you experience an incompatibility issue, please report it to us and to the plugin that conflicts with Elementor Editor.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20code%3F\">\nDo I need to know how to code?\n</h4>\n<p>\n<p>No! Elementor Editor provides you with all the widgets and features that you need to build a professional website without using code.</p>\n</p>\n<dt id=\"do%20i%20need%20to%20know%20how%20to%20design%3F\">\nDo I need to know how to design?\n</h4>\n<p>\n<p>No, you can choose between professionally designed kits and templates that fit to every industry and have all you need to create your own professional website.</p>\n</p>\n<dt id=\"will%20elementor%20editor%20slow%20down%20my%20website%3F\">\nWill Elementor Editor slow down my website?\n</h4>\n<p>\n<p>As Elementor prioritizes speed and performance, you enjoy better and faster performance with each new version of the Editor. When testing the same page layout on older versions you can see a significant performance improvement, from a score of 82 in Google PageSpeed Insight in version 3.1, to a score of 95 i in version 3.5.</p>\n</p>\n<dt id=\"is%20my%20site%20secure%20with%20elementor%20editor%3F\">\nIs my site secure with Elementor Editor?\n</h4>\n<p>\n<p>The security of your website is extremely important to us and we take proactive measures to assure that your websites are secure. Elementor is ISO 27001 certified, and has a dedicated team of security professionals that implements industry best-practices for maximum security and compliance, 24/7.</p>\n<p>There is also a managed security Bug Bounty program, utilizing the community power by enabling 24/7/365 crowdsourced vulnerability detection.</p>\n</p>\n<dt id=\"can%20i%20buy%20templates%20separately%3F\">\nCan I buy templates separately?\n</h4>\n<p>\n<p>Of course, you can use any template that supports Elementor Editor.</p>\n</p>\n<dt id=\"is%20elementor%20editor%20compatible%20with%20post%20and%20custom%20post%20types%3F\">\nIs Elementor Editor compatible with Post and Custom Post Types?\n</h4>\n<p>\n<p>Of course! You can set which post types will enable Elementor in the settings page.</p>\n</p>\n<dt id=\"what%20is%20the%20difference%20between%20elementor%27s%20free%20editor%20plugin%20and%20elementor%20editor%20pro%3F\">\nWhat is the difference between Elementor&#8217;s free Editor plugin and Elementor Editor Pro?\n</h4>\n<p>\n<p>Elementor Editor’s Free version allows you to explore our revolutionary drag &amp; drop live editor, basic widgets and templates. Elementor Editor Pro (Essential, Advanced, Expert, Studio, and Agency) empowers you with more professional tools that speed up your workflow, give you access to human-powered support, help you build more advanced content, and convert visitors. See full comparison here.</p>\n</p>\n<dt id=\"how%20can%20i%20become%20a%20contributor%3F\">\nHow can I become a Contributor?\n</h4>\n<p>\n<p>If you want to contribute, go to our <a href=\"https://github.com/elementor/elementor\" rel=\"nofollow ugc\">Elementor GitHub Repository</a> and see where you can help.<br />\nYou can also add a new language via <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate/\" rel=\"nofollow ugc\">translate.wordpress.org</a>. We’ve built a short guide explaining <a href=\"https://go.elementor.com/wp-repo-description-tab-wordpress-plugin-translate-faq/\" rel=\"nofollow ugc\">how to translate and localize the plugin</a>.</p>\n</p>\n\n\";s:9:\"changelog\";s:2810:\"<h4>3.35.5 &#8211; 2026-02-17</h4>\n<ul>\n<li>Security Fix: Improved code security enforcement in global style settings</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n</ul>\n<h4>3.35.4 &#8211; 2026-02-11</h4>\n<ul>\n<li>Fix: License activation issues in various scenarios</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n<li>Fix: Inline editing UI issues on canvas &#8211; Editor V4</li>\n</ul>\n<h4>3.35.3 &#8211; 2026-02-05</h4>\n<ul>\n<li>Fix: Fatal error appears in dashboard widget in WordPress Admin (<a href=\"https://github.com/elementor/elementor/issues/34663\" rel=\"nofollow ugc\">#34663</a>, <a href=\"https://github.com/elementor/elementor/issues/34659\" rel=\"nofollow ugc\">#34659</a>)</li>\n</ul>\n<h4>3.35.2 &#8211; 2026-02-05</h4>\n<ul>\n<li>Fix: Editor menu in WordPress admin displays incorrectly in RTL</li>\n</ul>\n<h4>3.35.1 &#8211; 2026-02-04</h4>\n<ul>\n<li>Fix: Editor Top Bar does not appear in various scenarios (<a href=\"https://github.com/elementor/elementor/issues/34623\" rel=\"nofollow ugc\">#34623</a>)</li>\n<li>Fix: Fatal error when the PHP <code>mbstring</code> module is missing</li>\n<li>Fix: General UI issues in Editor screens in WordPress Admin</li>\n</ul>\n<h4>3.35.0 &#8211; 2026-02-02</h4>\n<ul>\n<li>New: Introducing Components &#8211; reusable layout building blocks with global sync and per-instance content overrides &#8211; Editor V4</li>\n<li>New: Introducing Inline Editing &#8211; edit Atomic Heading and Paragraph text directly on the canvas &#8211; Editor V4</li>\n<li>New: Introducing a contextual formatting toolbar for inline text editing, including links and common text styles &#8211; Editor V4</li>\n<li>Tweak: Version 4 status updated to Beta and production-ready &#8211; Editor V4</li>\n<li>Tweak: Children perspective controls available only for relevant parent elements &#8211; Editor V4</li>\n<li>Tweak: <code>:hover</code> styling automatically applies to <code>:focus-visible</code> for improved accessibility &#8211; Editor V4</li>\n<li>Tweak: Dynamic tags support added to color picker controls &#8211; Editor V4</li>\n<li>Tweak: Link and Button accessibility improvements in Dynamic Tags &#8211; Editor V4</li>\n<li>Tweak: Nested Accordion optimizations with Grid in Chrome browser</li>\n<li>Fix: Size link-unlink operations not applying consistently &#8211; Editor V4</li>\n<li>Fix: Div Block and Flexbox base styles overriding user settings when viewed from another document &#8211; Editor V4</li>\n<li>Fix: Flex and Div blocks lose selection when deleting an assigned class via the Class Manager &#8211; Editor V4</li>\n<li>Fix: Container handles not visible when &#8220;Overflow: Hidden&#8221; is enabled</li>\n</ul>\n<p><a href=\"https://go.elementor.com/full-changelog/\" rel=\"nofollow ugc\">See changelog for all versions.</a></p>\n\";s:11:\"screenshots\";s:3162:\"<ol><li><a href=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\" alt=\"&lt;strong&gt;Visual Drag and Drop Editor&lt;/strong&gt; - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\"></a><p><strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\" alt=\"&lt;strong&gt;Full Design System&lt;/strong&gt; - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\"></a><p><strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\" alt=\"&lt;strong&gt;Responsive Design&lt;/strong&gt; Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\"></a><p><strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\" alt=\"&lt;strong&gt;Kits and Templates&lt;/strong&gt; - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\"></a><p><strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\" alt=\"&lt;strong&gt;Nested Elements&lt;/strong&gt; Leverage Elementor Editor&#039;s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\"></a><p><strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.</p></li><li><a href=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\"><img src=\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\" alt=\"&lt;strong&gt;Motion Effects&lt;/strong&gt; - Add entrance animations and transitions to any element in your website to captivate visitors.\"></a><p><strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.</p></li></ol>\";s:7:\"reviews\";s:15149:\"<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Feature rich plugin. Great support.</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/retrovertigo/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/b43e6df2fcf839e59d598beef9e175f6fc1f5bc6465d26305e3b865f2b91830c?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/b43e6df2fcf839e59d598beef9e175f6fc1f5bc6465d26305e3b865f2b91830c?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/retrovertigo/\" class=\"reviewer-name\">retrovertigo</a> on <span class=\"review-date\">February 18, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>It comes with a rich set of features for authors and has great support!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Poor plugin</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/zipname/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8b1e45cc5440b23af48e8b50e0f49741fb07bbde468fcc08a58757342e4e7e90?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8b1e45cc5440b23af48e8b50e0f49741fb07bbde468fcc08a58757342e4e7e90?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/zipname/\" class=\"reviewer-name\">zipname</a> on <span class=\"review-date\">February 15, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Poor plugin</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">hello every body</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mahdyfarsian/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/89c979277be6943f8b95978d202f7ac4f1e1a9cd3cc0dce1225c51c8317c810e?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/89c979277be6943f8b95978d202f7ac4f1e1a9cd3cc0dce1225c51c8317c810e?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/mahdyfarsian/\" class=\"reviewer-name\">mahdyfarsian</a> on <span class=\"review-date\">February 13, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>hi</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I am very happy because I use WordPress.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Terrible the last update</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"3 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"3\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/wiperelite/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/f43d96e5456b5582f3aa0ca01a6feb6455258545cc959a67683ae77968731ba4?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/f43d96e5456b5582f3aa0ca01a6feb6455258545cc959a67683ae77968731ba4?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/wiperelite/\" class=\"reviewer-name\">wiperelite</a> on <span class=\"review-date\">February 13, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>The last update is terrible, templates function now is very uncomfortable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pls return elementor as last version, this is so annoying.</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Warning - hard to cancel!!!</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/hansnilsson/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/a84ed7092906331f2a5efa885af09efeb47175ef90abe2cc3c58ad4c082e220b?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/a84ed7092906331f2a5efa885af09efeb47175ef90abe2cc3c58ad4c082e220b?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/hansnilsson/\" class=\"reviewer-name\">hansnilsson</a> on <span class=\"review-date\">February 9, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Before you buy this, be sure you don\'t want to cancel it within years because it is a pain to cancel the subscription!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">They do it well</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/queseo/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/669bdbd1cc8cefd7cdab6c449557a2fda97d7bff797f429b73325c46341a43ec?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/669bdbd1cc8cefd7cdab6c449557a2fda97d7bff797f429b73325c46341a43ec?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/queseo/\" class=\"reviewer-name\">Queseo <small>(queseo)</small></a> on <span class=\"review-date\">February 7, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>They create an easy, powerfull and fast plugin for design and create pages with WordPress</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Makes Website Building Easy</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/smhcis/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/ed22b175b73169d65e94c1459c8247627543116330f357390d06142da40ed3b5?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/ed22b175b73169d65e94c1459c8247627543116330f357390d06142da40ed3b5?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/smhcis/\" class=\"reviewer-name\">smhcis</a> on <span class=\"review-date\">February 5, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Elementor makes it easy to make flexible, attractive websites. The huge number of features means I don\'t have to install a dozen different plugins because the widget or function I need is probably already included!</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">very easy</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"5 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"5\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/mohamadkamn1369/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/e56f25ca1a361de4fc4cb51ec83370b694f724581c55ff393163d46f5510eaba?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/e56f25ca1a361de4fc4cb51ec83370b694f724581c55ff393163d46f5510eaba?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/mohamadkamn1369/\" class=\"reviewer-name\">mohamadkamn1369</a> on <span class=\"review-date\">February 5, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>im happy to use wordpress as website develooper </p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">Wonderful</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"1 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"1\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/keyascii/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/8aede766e37ca20411e18ce027e1b1cb5e9eb58cefe14f7a980339726551b0db?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/8aede766e37ca20411e18ce027e1b1cb5e9eb58cefe14f7a980339726551b0db?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/keyascii/\" class=\"reviewer-name\">keyascii</a> on <span class=\"review-date\">February 3, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Does not work. Simply. If I create a new template, it is not managed as a popup</p>\n<!-- /wp:paragraph --></div>\n</div>\n<div class=\"review\">\n	<div class=\"review-head\">\n		<div class=\"reviewer-info\">\n			<div class=\"review-title-section\">\n				<h4 class=\"review-title\">MAJ sur MAJ</h4>\n				<div class=\"star-rating\">\n				<div class=\"wporg-ratings\" aria-label=\"2 out of 5 stars\" data-title-template=\"%s out of 5 stars\" data-rating=\"2\" style=\"color:#ffb900;\"><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-filled\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span><span class=\"star dashicons dashicons-star-empty\"></span></div>				</div>\n			</div>\n			<p class=\"reviewer\">\n				By <a href=\"https://profiles.wordpress.org/monastromag/\"><img alt=\'\' src=\'https://secure.gravatar.com/avatar/7963eea045273490f88ed9b8317cb5fa727a25d324b835fbda1b155050d233cb?s=16&#038;d=monsterid&#038;r=g\' srcset=\'https://secure.gravatar.com/avatar/7963eea045273490f88ed9b8317cb5fa727a25d324b835fbda1b155050d233cb?s=32&#038;d=monsterid&#038;r=g 2x\' class=\'avatar avatar-16 photo\' height=\'16\' width=\'16\' loading=\'lazy\' decoding=\'async\'/></a><a href=\"https://profiles.wordpress.org/monastromag/\" class=\"reviewer-name\">monastromag</a> on <span class=\"review-date\">February 2, 2026</span>			</p>\n		</div>\n	</div>\n	<div class=\"review-body\"><!-- wp:paragraph -->\n<p>Depuis quelques temps ont est submergé de mise à jours mais dans 90% du temps c\'est pour une V4 qui est toujours en phase béta. Je ne suis pas contre les évolutions mais ça commence a faire long cette version béta. Déçu par ce coté répétitif qui nous oblige a réaliser une action qui à l\'heure actuelle ne m\'apporte rien du tout. Passer en alpha et je ferai les mise à jours avec grand plaisir.</p>\n<!-- /wp:paragraph --></div>\n</div>\n\";}s:17:\"short_description\";s:145:\"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!\";s:13:\"download_link\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:14:\"upgrade_notice\";a:0:{}s:11:\"screenshots\";a:6:{i:1;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-1.gif?rev=3005087\";s:7:\"caption\";s:144:\"<strong>Visual Drag and Drop Editor</strong> - Design your website layouts and place any element anywhere on the page for pixel-perfect designs.\";}i:2;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-2.gif?rev=3005087\";s:7:\"caption\";s:185:\"<strong>Full Design System</strong> - Enjoy a professional workflow and ensure consistency across your site. Define your settings, use them globally, and instantly adjust them any time.\";}i:3;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-3.gif?rev=3005087\";s:7:\"caption\";s:170:\"<strong>Responsive Design</strong> Fully edit your website and customize the behavior on desktop, tablet, &amp; mobile to optimize the visitor experience on every device.\";}i:4;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-4.gif?rev=3005087\";s:7:\"caption\";s:193:\"<strong>Kits and Templates</strong> - Jumpstart your web creation process or get inspired with professionally-designed templates or full website kits available for your immediate customization.\";}i:5;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-5.gif?rev=3005087\";s:7:\"caption\";s:197:\"<strong>Nested Elements</strong> Leverage Elementor Editor\'s Nested widgets to place any widget inside the content area of another widget - like Tabs, and Accordion for complete design flexibility.\";}i:6;a:2:{s:3:\"src\";s:62:\"https://ps.w.org/elementor/assets/screenshot-6.gif?rev=3005087\";s:7:\"caption\";s:127:\"<strong>Motion Effects</strong> - Add entrance animations and transitions to any element in your website to captivate visitors.\";}}s:4:\"tags\";a:5:{s:13:\"drag-and-drop\";s:13:\"drag-and-drop\";s:6:\"editor\";s:6:\"editor\";s:9:\"elementor\";s:9:\"elementor\";s:12:\"landing-page\";s:12:\"landing page\";s:12:\"page-builder\";s:12:\"page builder\";}s:8:\"versions\";a:405:{s:5:\"3.0.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.0.zip\";s:5:\"3.0.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.1.zip\";s:6:\"3.0.10\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.10.zip\";s:6:\"3.0.11\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.11.zip\";s:6:\"3.0.12\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.12.zip\";s:6:\"3.0.13\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.13.zip\";s:6:\"3.0.14\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.14.zip\";s:6:\"3.0.15\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.15.zip\";s:6:\"3.0.16\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.0.16.zip\";s:5:\"3.0.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.2.zip\";s:5:\"3.0.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.3.zip\";s:5:\"3.0.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.4.zip\";s:5:\"3.0.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.5.zip\";s:5:\"3.0.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.6.zip\";s:5:\"3.0.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.7.zip\";s:5:\"3.0.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.zip\";s:7:\"3.0.8.1\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.0.8.1.zip\";s:5:\"3.0.9\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.0.9.zip\";s:5:\"3.1.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.0.zip\";s:11:\"3.1.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta1.zip\";s:11:\"3.1.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta2.zip\";s:11:\"3.1.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta3.zip\";s:11:\"3.1.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-beta4.zip\";s:10:\"3.1.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev1.zip\";s:10:\"3.1.0-dev2\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev2.zip\";s:10:\"3.1.0-dev3\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.1.0-dev3.zip\";s:5:\"3.1.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.1.zip\";s:5:\"3.1.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.2.zip\";s:5:\"3.1.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.3.zip\";s:5:\"3.1.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.1.4.zip\";s:6:\"3.10.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.0.zip\";s:11:\"3.10.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.10.0-dev1.zip\";s:6:\"3.10.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.1.zip\";s:6:\"3.10.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.10.2.zip\";s:6:\"3.11.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.0.zip\";s:12:\"3.11.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta1.zip\";s:12:\"3.11.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta2.zip\";s:12:\"3.11.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-beta3.zip\";s:11:\"3.11.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev1.zip\";s:11:\"3.11.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev2.zip\";s:11:\"3.11.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.11.0-dev3.zip\";s:6:\"3.11.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.1.zip\";s:6:\"3.11.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.2.zip\";s:6:\"3.11.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.3.zip\";s:6:\"3.11.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.4.zip\";s:6:\"3.11.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.11.5.zip\";s:6:\"3.12.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.0.zip\";s:6:\"3.12.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.1.zip\";s:6:\"3.12.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.12.2.zip\";s:6:\"3.13.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.0.zip\";s:12:\"3.13.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta1.zip\";s:12:\"3.13.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta2.zip\";s:12:\"3.13.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-beta3.zip\";s:11:\"3.13.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev3.zip\";s:11:\"3.13.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.13.0-dev4.zip\";s:6:\"3.13.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.1.zip\";s:6:\"3.13.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.2.zip\";s:6:\"3.13.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.3.zip\";s:6:\"3.13.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.13.4.zip\";s:6:\"3.14.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.0.zip\";s:12:\"3.14.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta1.zip\";s:12:\"3.14.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta2.zip\";s:12:\"3.14.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta3.zip\";s:12:\"3.14.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta4.zip\";s:12:\"3.14.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.14.0-beta5.zip\";s:6:\"3.14.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.14.1.zip\";s:6:\"3.15.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.0.zip\";s:6:\"3.15.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.1.zip\";s:6:\"3.15.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.2.zip\";s:6:\"3.15.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.15.3.zip\";s:6:\"3.16.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.0.zip\";s:12:\"3.16.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta3.zip\";s:12:\"3.16.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-beta4.zip\";s:11:\"3.16.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev1.zip\";s:11:\"3.16.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.16.0-dev2.zip\";s:6:\"3.16.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.1.zip\";s:6:\"3.16.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.2.zip\";s:6:\"3.16.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.3.zip\";s:6:\"3.16.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.4.zip\";s:6:\"3.16.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.5.zip\";s:6:\"3.16.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.16.6.zip\";s:6:\"3.17.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.0.zip\";s:11:\"3.17.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev2.zip\";s:11:\"3.17.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev3.zip\";s:11:\"3.17.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.17.0-dev4.zip\";s:6:\"3.17.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.1.zip\";s:6:\"3.17.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.2.zip\";s:6:\"3.17.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.17.3.zip\";s:6:\"3.18.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.0.zip\";s:12:\"3.18.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta1.zip\";s:12:\"3.18.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta2.zip\";s:12:\"3.18.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta3.zip\";s:12:\"3.18.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-beta4.zip\";s:11:\"3.18.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.18.0-dev1.zip\";s:6:\"3.18.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.1.zip\";s:6:\"3.18.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.2.zip\";s:6:\"3.18.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.18.3.zip\";s:6:\"3.19.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.0.zip\";s:12:\"3.19.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta1.zip\";s:12:\"3.19.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta2.zip\";s:12:\"3.19.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta3.zip\";s:12:\"3.19.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta4.zip\";s:12:\"3.19.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta5.zip\";s:12:\"3.19.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-beta6.zip\";s:11:\"3.19.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev1.zip\";s:11:\"3.19.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev2.zip\";s:11:\"3.19.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev3.zip\";s:11:\"3.19.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev4.zip\";s:11:\"3.19.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev5.zip\";s:11:\"3.19.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.19.0-dev6.zip\";s:6:\"3.19.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.1.zip\";s:6:\"3.19.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.2.zip\";s:6:\"3.19.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.3.zip\";s:6:\"3.19.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.19.4.zip\";s:5:\"3.2.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.0.zip\";s:5:\"3.2.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:5:\"3.2.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.2.zip\";s:5:\"3.2.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"3.2.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.4.zip\";s:5:\"3.2.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.5.zip\";s:6:\"3.20.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.0.zip\";s:12:\"3.20.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta1.zip\";s:12:\"3.20.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta2.zip\";s:12:\"3.20.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta3.zip\";s:12:\"3.20.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-beta4.zip\";s:11:\"3.20.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev1.zip\";s:11:\"3.20.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev2.zip\";s:11:\"3.20.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev3.zip\";s:11:\"3.20.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.20.0-dev4.zip\";s:6:\"3.20.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:6:\"3.20.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.2.zip\";s:6:\"3.20.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:6:\"3.20.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.4.zip\";s:6:\"3.21.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.0.zip\";s:12:\"3.21.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta1.zip\";s:12:\"3.21.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta2.zip\";s:12:\"3.21.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-beta3.zip\";s:11:\"3.21.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev1.zip\";s:11:\"3.21.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev2.zip\";s:11:\"3.21.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.21.0-dev3.zip\";s:6:\"3.21.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.1.zip\";s:6:\"3.21.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.2.zip\";s:6:\"3.21.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.3.zip\";s:6:\"3.21.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.4.zip\";s:6:\"3.21.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.5.zip\";s:6:\"3.21.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.6.zip\";s:6:\"3.21.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.7.zip\";s:6:\"3.21.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:6:\"3.22.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.0.zip\";s:12:\"3.22.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta1.zip\";s:12:\"3.22.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta2.zip\";s:12:\"3.22.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta3.zip\";s:12:\"3.22.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta4.zip\";s:12:\"3.22.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta5.zip\";s:12:\"3.22.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-beta6.zip\";s:11:\"3.22.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev1.zip\";s:11:\"3.22.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev2.zip\";s:11:\"3.22.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev3.zip\";s:11:\"3.22.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev4.zip\";s:11:\"3.22.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev5.zip\";s:11:\"3.22.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.22.0-dev6.zip\";s:6:\"3.22.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.1.zip\";s:6:\"3.22.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:6:\"3.22.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.3.zip\";s:6:\"3.23.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.0.zip\";s:12:\"3.23.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta1.zip\";s:12:\"3.23.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta2.zip\";s:12:\"3.23.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta3.zip\";s:12:\"3.23.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta4.zip\";s:12:\"3.23.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta5.zip\";s:12:\"3.23.0-beta6\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-beta6.zip\";s:11:\"3.23.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev1.zip\";s:11:\"3.23.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev2.zip\";s:11:\"3.23.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev3.zip\";s:11:\"3.23.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev4.zip\";s:11:\"3.23.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev5.zip\";s:11:\"3.23.0-dev6\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.23.0-dev6.zip\";s:6:\"3.23.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.1.zip\";s:6:\"3.23.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.2.zip\";s:6:\"3.23.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.3.zip\";s:6:\"3.23.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.23.4.zip\";s:6:\"3.24.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.0.zip\";s:12:\"3.24.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta1.zip\";s:12:\"3.24.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta2.zip\";s:12:\"3.24.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-beta3.zip\";s:11:\"3.24.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev1.zip\";s:11:\"3.24.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev2.zip\";s:11:\"3.24.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.24.0-dev3.zip\";s:6:\"3.24.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.1.zip\";s:6:\"3.24.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.2.zip\";s:6:\"3.24.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.3.zip\";s:6:\"3.24.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.4.zip\";s:6:\"3.24.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.5.zip\";s:6:\"3.24.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.6.zip\";s:6:\"3.24.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.7.zip\";s:6:\"3.24.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.24.8.zip\";s:6:\"3.25.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.0.zip\";s:12:\"3.25.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta1.zip\";s:12:\"3.25.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta2.zip\";s:12:\"3.25.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-beta3.zip\";s:11:\"3.25.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev1.zip\";s:11:\"3.25.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev2.zip\";s:11:\"3.25.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.25.0-dev3.zip\";s:6:\"3.25.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.1.zip\";s:7:\"3.25.10\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.10.zip\";s:7:\"3.25.11\";s:60:\"https://downloads.wordpress.org/plugin/elementor.3.25.11.zip\";s:6:\"3.25.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.2.zip\";s:6:\"3.25.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.3.zip\";s:6:\"3.25.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.4.zip\";s:6:\"3.25.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.5.zip\";s:6:\"3.25.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.6.zip\";s:6:\"3.25.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.7.zip\";s:6:\"3.25.8\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.8.zip\";s:6:\"3.25.9\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.25.9.zip\";s:6:\"3.26.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.0.zip\";s:12:\"3.26.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta1.zip\";s:12:\"3.26.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta2.zip\";s:12:\"3.26.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta3.zip\";s:12:\"3.26.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta4.zip\";s:12:\"3.26.0-beta5\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-beta5.zip\";s:11:\"3.26.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev1.zip\";s:11:\"3.26.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev2.zip\";s:11:\"3.26.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev3.zip\";s:11:\"3.26.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev4.zip\";s:11:\"3.26.0-dev5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.26.0-dev5.zip\";s:6:\"3.26.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.1.zip\";s:6:\"3.26.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.2.zip\";s:6:\"3.26.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.3.zip\";s:6:\"3.26.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.4.zip\";s:6:\"3.26.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.26.5.zip\";s:6:\"3.27.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.0.zip\";s:12:\"3.27.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta1.zip\";s:12:\"3.27.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-beta2.zip\";s:11:\"3.27.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev1.zip\";s:11:\"3.27.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.27.0-dev2.zip\";s:6:\"3.27.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.1.zip\";s:6:\"3.27.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.2.zip\";s:6:\"3.27.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.3.zip\";s:6:\"3.27.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.4.zip\";s:6:\"3.27.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.5.zip\";s:6:\"3.27.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.6.zip\";s:6:\"3.27.7\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.27.7.zip\";s:6:\"3.28.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.0.zip\";s:12:\"3.28.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta1.zip\";s:12:\"3.28.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta2.zip\";s:12:\"3.28.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-beta3.zip\";s:11:\"3.28.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev1.zip\";s:11:\"3.28.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev2.zip\";s:11:\"3.28.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.28.0-dev3.zip\";s:6:\"3.28.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.1.zip\";s:6:\"3.28.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.2.zip\";s:6:\"3.28.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.3.zip\";s:6:\"3.28.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.28.4.zip\";s:6:\"3.29.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.0.zip\";s:12:\"3.29.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta1.zip\";s:12:\"3.29.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta2.zip\";s:12:\"3.29.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta3.zip\";s:12:\"3.29.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-beta4.zip\";s:11:\"3.29.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev1.zip\";s:11:\"3.29.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev2.zip\";s:11:\"3.29.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev3.zip\";s:11:\"3.29.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.29.0-dev4.zip\";s:6:\"3.29.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.1.zip\";s:6:\"3.29.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.29.2.zip\";s:5:\"3.3.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.0.zip\";s:5:\"3.3.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.zip\";s:6:\"3.30.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.0.zip\";s:12:\"3.30.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta1.zip\";s:12:\"3.30.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta2.zip\";s:12:\"3.30.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-beta3.zip\";s:11:\"3.30.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev1.zip\";s:11:\"3.30.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev2.zip\";s:11:\"3.30.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.30.0-dev3.zip\";s:6:\"3.30.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.1.zip\";s:6:\"3.30.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.2.zip\";s:6:\"3.30.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.3.zip\";s:6:\"3.30.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.30.4.zip\";s:6:\"3.31.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.0.zip\";s:12:\"3.31.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta1.zip\";s:12:\"3.31.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-beta2.zip\";s:11:\"3.31.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev1.zip\";s:11:\"3.31.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.31.0-dev2.zip\";s:6:\"3.31.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.1.zip\";s:6:\"3.31.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.2.zip\";s:6:\"3.31.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.3.zip\";s:6:\"3.31.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.4.zip\";s:6:\"3.31.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.31.5.zip\";s:6:\"3.32.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.0.zip\";s:12:\"3.32.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta1.zip\";s:12:\"3.32.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta2.zip\";s:12:\"3.32.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-beta3.zip\";s:11:\"3.32.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev1.zip\";s:11:\"3.32.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev2.zip\";s:11:\"3.32.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.32.0-dev3.zip\";s:6:\"3.32.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.1.zip\";s:6:\"3.32.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.2.zip\";s:6:\"3.32.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.3.zip\";s:6:\"3.32.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.4.zip\";s:6:\"3.32.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.32.5.zip\";s:6:\"3.33.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.0.zip\";s:12:\"3.33.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta1.zip\";s:12:\"3.33.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta2.zip\";s:12:\"3.33.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta3.zip\";s:12:\"3.33.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-beta4.zip\";s:11:\"3.33.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev1.zip\";s:11:\"3.33.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev2.zip\";s:11:\"3.33.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev3.zip\";s:11:\"3.33.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.33.0-dev4.zip\";s:6:\"3.33.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.1.zip\";s:6:\"3.33.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.2.zip\";s:6:\"3.33.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.3.zip\";s:6:\"3.33.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.4.zip\";s:6:\"3.33.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.5.zip\";s:6:\"3.33.6\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.33.6.zip\";s:6:\"3.34.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.0.zip\";s:12:\"3.34.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta1.zip\";s:12:\"3.34.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta2.zip\";s:12:\"3.34.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-beta3.zip\";s:11:\"3.34.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev1.zip\";s:11:\"3.34.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.34.0-dev2.zip\";s:6:\"3.34.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.1.zip\";s:6:\"3.34.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.2.zip\";s:6:\"3.34.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.3.zip\";s:6:\"3.34.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.34.4.zip\";s:6:\"3.35.0\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.0.zip\";s:12:\"3.35.0-beta1\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta1.zip\";s:12:\"3.35.0-beta2\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta2.zip\";s:12:\"3.35.0-beta3\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta3.zip\";s:12:\"3.35.0-beta4\";s:65:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-beta4.zip\";s:11:\"3.35.0-dev1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev1.zip\";s:11:\"3.35.0-dev2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev2.zip\";s:11:\"3.35.0-dev3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev3.zip\";s:11:\"3.35.0-dev4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.35.0-dev4.zip\";s:6:\"3.35.1\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.1.zip\";s:6:\"3.35.2\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.2.zip\";s:6:\"3.35.3\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.3.zip\";s:6:\"3.35.4\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.4.zip\";s:6:\"3.35.5\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:5:\"3.4.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.0.zip\";s:10:\"3.4.0-dev7\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev7.zip\";s:10:\"3.4.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev8.zip\";s:10:\"3.4.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.4.0-dev9.zip\";s:5:\"3.4.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.1.zip\";s:5:\"3.4.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.2.zip\";s:5:\"3.4.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.3.zip\";s:5:\"3.4.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.4.zip\";s:5:\"3.4.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.5.zip\";s:5:\"3.4.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.6.zip\";s:5:\"3.4.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip\";s:5:\"3.4.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.4.8.zip\";s:5:\"3.5.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.0.zip\";s:11:\"3.5.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta1.zip\";s:11:\"3.5.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta2.zip\";s:11:\"3.5.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta3.zip\";s:11:\"3.5.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta4.zip\";s:11:\"3.5.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta5.zip\";s:11:\"3.5.0-beta7\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta7.zip\";s:11:\"3.5.0-beta8\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-beta8.zip\";s:10:\"3.5.0-dev8\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev8.zip\";s:10:\"3.5.0-dev9\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.5.0-dev9.zip\";s:5:\"3.5.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.1.zip\";s:5:\"3.5.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.2.zip\";s:5:\"3.5.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.3.zip\";s:5:\"3.5.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.4.zip\";s:5:\"3.5.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.5.zip\";s:5:\"3.5.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.5.6.zip\";s:5:\"3.6.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:11:\"3.6.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta1.zip\";s:11:\"3.6.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta2.zip\";s:11:\"3.6.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta3.zip\";s:11:\"3.6.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta4.zip\";s:11:\"3.6.0-beta5\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-beta5.zip\";s:10:\"3.6.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev1.zip\";s:11:\"3.6.0-dev10\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.6.0-dev10.zip\";s:5:\"3.6.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.1.zip\";s:5:\"3.6.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.2.zip\";s:5:\"3.6.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.3.zip\";s:5:\"3.6.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.4.zip\";s:5:\"3.6.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.5.zip\";s:5:\"3.6.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.6.zip\";s:5:\"3.6.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.7.zip\";s:5:\"3.6.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.8.zip\";s:5:\"3.7.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.0.zip\";s:11:\"3.7.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta1.zip\";s:11:\"3.7.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta2.zip\";s:11:\"3.7.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta3.zip\";s:11:\"3.7.0-beta4\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-beta4.zip\";s:10:\"3.7.0-dev1\";s:63:\"https://downloads.wordpress.org/plugin/elementor.3.7.0-dev1.zip\";s:5:\"3.7.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.1.zip\";s:5:\"3.7.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.2.zip\";s:5:\"3.7.3\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.3.zip\";s:5:\"3.7.4\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.4.zip\";s:5:\"3.7.5\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.5.zip\";s:5:\"3.7.6\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.6.zip\";s:5:\"3.7.7\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.7.zip\";s:5:\"3.7.8\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.7.8.zip\";s:5:\"3.8.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.0.zip\";s:11:\"3.8.0-beta1\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta1.zip\";s:11:\"3.8.0-beta2\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta2.zip\";s:11:\"3.8.0-beta3\";s:64:\"https://downloads.wordpress.org/plugin/elementor.3.8.0-beta3.zip\";s:5:\"3.8.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.8.1.zip\";s:5:\"3.9.0\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.0.zip\";s:5:\"3.9.1\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.1.zip\";s:5:\"3.9.2\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.9.2.zip\";s:5:\"trunk\";s:52:\"https://downloads.wordpress.org/plugin/elementor.zip\";}s:14:\"business_model\";s:10:\"commercial\";s:14:\"repository_url\";s:0:\"\";s:22:\"commercial_support_url\";s:94:\"https://elementor.com/support/?utm_source=wp-repo&utm_medium=link&utm_campaign=premium-support\";s:11:\"donate_link\";s:0:\"\";s:7:\"banners\";a:2:{s:3:\"low\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";s:4:\"high\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";}s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";}s:12:\"preview_link\";s:0:\"\";s:4:\"Name\";s:63:\"Elementor Website Builder &#8211; More Than Just a Page Builder\";}}', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(182, 'elementor_onboarded', '1', 'auto'),
(183, 'elementor_active_kit', '7', 'auto'),
(184, 'elementor_font_display', 'swap', 'auto'),
(194, '_elementor_installed_time', '1770026612', 'auto'),
(195, 'elementor_connect_site_key', 'd5caa3e0ce9adf4e2f5e503f69b9c832', 'auto'),
(187, 'recently_activated', 'a:0:{}', 'off'),
(193, 'elementor_events_db_version', '1.0.0', 'off'),
(189, 'elementor_landing_pages_activation', '0', 'auto'),
(190, 'elementor_checklist', '{\"last_opened_timestamp\":1770032253,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header_pro\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"should_open_in_editor\":true}', 'auto'),
(191, 'elementor_version', '3.35.5', 'auto'),
(192, 'elementor_install_history', 'a:2:{s:6:\"3.35.0\";i:1770026612;s:6:\"3.35.5\";i:1771380685;}', 'auto'),
(200, 'elementor_clear_cache', '', 'auto'),
(201, 'elementor_reset_api_data', '', 'auto'),
(202, 'elementor_log', 'a:34:{s:32:\"694e812599f043426d682503ba65737d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:07:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:30:\"r.startsWith is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2026-02-02 10:07:14\";i:1;s:19:\"2026-02-02 10:07:34\";i:2;s:19:\"2026-02-02 11:28:06\";i:3;s:19:\"2026-02-02 11:40:59\";i:4;s:19:\"2026-02-03 06:09:54\";i:5;s:19:\"2026-02-03 06:33:18\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770026834\";s:7:\"message\";s:30:\"r.startsWith is not a function\";s:3:\"url\";s:86:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"45739\";}s:7:\"\0*\0file\";s:86:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/admin.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"45739\";}s:32:\"f3aea630880b9daceb640931769129ec\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:08:02\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:2363:\"Uncaught Error: Class &quot;Elementor\\Modules\\AtomicWidgets\\Styles\\CacheValidity\\Cache_Validity&quot; not found in /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php:71\nStack trace:\n#0 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php(25): Elementor\\Modules\\Components\\Styles\\Component_Styles-&gt;invalidate_cache()\n#1 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Modules\\Components\\Styles\\Component_Styles-&gt;Elementor\\Modules\\Components\\Styles\\{closure}()\n#2 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#3 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#4 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/files/manager.php(130): do_action()\n#5 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/element-cache/module.php(157): Elementor\\Core\\Files\\Manager-&gt;clear_cache()\n#6 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(343): Elementor\\Modules\\ElementCache\\Module-&gt;clear_cache()\n#7 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#8 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#9 /home/mrarqpph/public_html/oasis/wp-admin/includes/class-wp-upgrader.php(987): do_action()\n#10 /home/mrarqpph/public_html/oasis/wp-admin/includes/class-plugin-upgrader.php(224): WP_Upgrader-&gt;run()\n#11 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/rollback.php(174): Plugin_Upgrader-&gt;upgrade()\n#12 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/rollback.php(197): Elementor\\Rollback-&gt;upgrade()\n#13 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/settings/tools.php(192): Elementor\\Rollback-&gt;run()\n#14 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Tools-&gt;post_elementor_rollback()\n#15 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#16 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#17 /home/mrarqpph/public_html/oasis/wp-admin/admin-post.php(82): do_action()\n#18 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:08:02\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:2308:\"Uncaught Error: Class \"Elementor\\Modules\\AtomicWidgets\\Styles\\CacheValidity\\Cache_Validity\" not found in /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php:71\nStack trace:\n#0 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php(25): Elementor\\Modules\\Components\\Styles\\Component_Styles->invalidate_cache()\n#1 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Modules\\Components\\Styles\\Component_Styles->Elementor\\Modules\\Components\\Styles\\{closure}()\n#2 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#3 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook->do_action()\n#4 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/files/manager.php(130): do_action()\n#5 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/element-cache/module.php(157): Elementor\\Core\\Files\\Manager->clear_cache()\n#6 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(343): Elementor\\Modules\\ElementCache\\Module->clear_cache()\n#7 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#8 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook->do_action()\n#9 /home/mrarqpph/public_html/oasis/wp-admin/includes/class-wp-upgrader.php(987): do_action()\n#10 /home/mrarqpph/public_html/oasis/wp-admin/includes/class-plugin-upgrader.php(224): WP_Upgrader->run()\n#11 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/rollback.php(174): Plugin_Upgrader->upgrade()\n#12 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/rollback.php(197): Elementor\\Rollback->upgrade()\n#13 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/settings/tools.php(192): Elementor\\Rollback->run()\n#14 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Tools->post_elementor_rollback()\n#15 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#16 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook->do_action()\n#17 /home/mrarqpph/public_html/oasis/wp-admin/admin-post.php(82): do_action()\n#18 {main}\n  thrown\";s:4:\"file\";s:108:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php\";s:4:\"line\";i:71;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:108:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/components/styles/component-styles.php\";s:7:\"\0*\0line\";i:71;}s:32:\"1668ce165f32e38fa2bfc91636aad18b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:09:27\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:52:\"Automatic conversion of false to array is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:09:27\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:52:\"Automatic conversion of false to array is deprecated\";s:4:\"file\";s:78:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/api.php\";s:4:\"line\";i:176;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:78:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/api.php\";s:7:\"\0*\0line\";i:176;}s:32:\"71ad6ec2c9feb647d14bf58acb7750b2\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:09:50\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:09:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:57:\"Using ${var} in strings is deprecated, use {$var} instead\";s:4:\"file\";s:88:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:4:\"line\";i:129;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:88:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor-pro/core/editor/editor.php\";s:7:\"\0*\0line\";i:129;}s:32:\"60a3e2537cbb8dea8ad8351cc77fd993\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"2449b08129e75370414db0cb15e16567\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8242e4d1979a0d1a23310d0e7df62379\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"9a5d3bf6cd68f53cdb8926db1cf2a019\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"f2dcff33aa852d7999d30be9b77cd088\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor Pro/Upgrades - _v_3_30_0_post_navigation_inline_icons Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"6554576bbe26024b7de55d5dfe4b14e4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.35.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.35.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"109bfef25c69064638f341a2b7cdedb4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:42:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.35.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 10:42:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.35.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"62a008db21ceb2eae4447678b545942b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-02 10:50:21\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:155;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-02-14 06:06:09\";i:1;s:19:\"2026-02-14 06:44:22\";i:2;s:19:\"2026-02-14 06:45:24\";i:3;s:19:\"2026-02-14 06:46:57\";i:4;s:19:\"2026-02-14 06:47:22\";i:5;s:19:\"2026-02-14 06:49:07\";i:6;s:19:\"2026-02-14 07:13:37\";i:7;s:19:\"2026-02-14 07:53:01\";i:8;s:19:\"2026-02-14 07:53:15\";i:9;s:19:\"2026-02-14 07:54:33\";i:10;s:19:\"2026-02-14 08:00:05\";i:11;s:19:\"2026-02-14 08:10:56\";i:12;s:19:\"2026-02-14 08:13:06\";i:13;s:19:\"2026-02-14 08:34:49\";i:14;s:19:\"2026-02-14 08:34:51\";i:15;s:19:\"2026-02-14 08:36:28\";i:16;s:19:\"2026-02-14 08:38:53\";i:17;s:19:\"2026-02-14 08:46:32\";i:18;s:19:\"2026-02-14 08:50:43\";i:19;s:19:\"2026-02-14 09:27:01\";i:20;s:19:\"2026-02-14 09:32:33\";i:21;s:19:\"2026-02-14 09:33:11\";i:22;s:19:\"2026-02-14 09:40:08\";i:23;s:19:\"2026-02-14 09:42:24\";i:24;s:19:\"2026-02-14 09:43:43\";i:25;s:19:\"2026-02-14 09:43:44\";i:26;s:19:\"2026-02-15 09:31:09\";i:27;s:19:\"2026-02-15 09:33:56\";i:28;s:19:\"2026-02-15 09:33:58\";i:29;s:19:\"2026-02-16 19:47:43\";i:30;s:19:\"2026-02-19 07:02:45\";i:31;s:19:\"2026-02-19 07:10:30\";i:32;s:19:\"2026-02-19 07:11:37\";i:33;s:19:\"2026-02-19 07:13:16\";i:34;s:19:\"2026-02-19 07:15:32\";i:35;s:19:\"2026-02-19 07:18:11\";i:36;s:19:\"2026-02-19 07:18:55\";i:37;s:19:\"2026-02-19 07:33:56\";i:38;s:19:\"2026-02-19 07:34:19\";i:39;s:19:\"2026-02-19 07:36:03\";i:40;s:19:\"2026-02-19 07:42:17\";i:41;s:19:\"2026-02-19 07:45:47\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:81:\"hexdec(): Passing null to parameter #1 ($hex_string) of type string is deprecated\";s:4:\"file\";s:94:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:230;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:94:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:230;}s:32:\"8c714fac5f337ed34edbecea3ee69a2d\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-02 11:52:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:107:\"Failed to execute &#039;querySelector&#039; on &#039;Document&#039;: &#039;#&#039; is not a valid selector.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:101;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-02-05 07:15:07\";i:1;s:19:\"2026-02-05 07:15:14\";i:2;s:19:\"2026-02-05 07:15:14\";i:3;s:19:\"2026-02-05 07:15:14\";i:4;s:19:\"2026-02-05 10:23:37\";i:5;s:19:\"2026-02-05 10:23:37\";i:6;s:19:\"2026-02-05 10:23:50\";i:7;s:19:\"2026-02-05 10:23:50\";i:8;s:19:\"2026-02-05 10:23:50\";i:9;s:19:\"2026-02-05 10:24:06\";i:10;s:19:\"2026-02-05 10:24:06\";i:11;s:19:\"2026-02-05 10:43:38\";i:12;s:19:\"2026-02-05 10:43:38\";i:13;s:19:\"2026-02-05 10:43:38\";i:14;s:19:\"2026-02-05 10:43:39\";i:15;s:19:\"2026-02-05 10:43:39\";i:16;s:19:\"2026-02-05 10:43:39\";i:17;s:19:\"2026-02-05 10:43:53\";i:18;s:19:\"2026-02-05 10:43:53\";i:19;s:19:\"2026-02-05 10:43:53\";i:20;s:19:\"2026-02-09 08:28:14\";i:21;s:19:\"2026-02-09 08:28:14\";i:22;s:19:\"2026-02-09 09:52:05\";i:23;s:19:\"2026-02-09 09:52:05\";i:24;s:19:\"2026-02-09 09:52:16\";i:25;s:19:\"2026-02-09 09:52:16\";i:26;s:19:\"2026-02-09 10:16:40\";i:27;s:19:\"2026-02-09 10:16:40\";i:28;s:19:\"2026-02-09 10:16:40\";i:29;s:19:\"2026-02-09 10:32:39\";i:30;s:19:\"2026-02-09 10:32:39\";i:31;s:19:\"2026-02-09 11:00:28\";i:32;s:19:\"2026-02-09 11:02:28\";i:33;s:19:\"2026-02-09 11:02:38\";i:34;s:19:\"2026-02-14 06:48:40\";i:35;s:19:\"2026-02-14 09:27:43\";i:36;s:19:\"2026-02-14 09:27:43\";i:37;s:19:\"2026-02-14 09:27:43\";i:38;s:19:\"2026-02-14 09:32:25\";i:39;s:19:\"2026-02-14 09:32:25\";i:40;s:19:\"2026-02-14 09:32:25\";i:41;s:19:\"2026-02-19 07:15:53\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770033139\";s:7:\"message\";s:77:\"Failed to execute \'querySelector\' on \'Document\': \'#\' is not a valid selector.\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:6:\"934078\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:6:\"934078\";}s:32:\"f99eb5ed417492ef28b6b3000203a316\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-02 11:58:20\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:61:\"Cannot read properties of undefined (reading &#039;get&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 11:58:20\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770033500\";s:7:\"message\";s:51:\"Cannot read properties of undefined (reading \'get\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"22591\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:5:\"22591\";}s:32:\"9a265cd7ec074eda7c026c6297c590e1\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-02 13:52:41\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:69:\"Cannot read properties of undefined (reading &#039;toLowerCase&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-02 13:52:41\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770040361\";s:7:\"message\";s:59:\"Cannot read properties of undefined (reading \'toLowerCase\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1018322\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1018322\";}s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-02 13:52:42\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:5;s:14:\"\0*\0times_dates\";a:5:{i:0;s:19:\"2026-02-02 13:52:42\";i:1;s:19:\"2026-02-02 13:52:43\";i:2;s:19:\"2026-02-02 13:52:43\";i:3;s:19:\"2026-02-02 13:52:43\";i:4;s:19:\"2026-02-02 13:52:43\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770040362\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1018825\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1018825\";}s:32:\"810a90bb4442b3a0d3ae3a045ae524e6\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-03 06:31:30\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:141:\"file_put_contents(/home/mrarqpph/public_html/oasis/wp-content/uploads/elementor/css/post-292.css): Failed to open stream: Disk quota exceeded\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-03 06:31:30\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:141:\"file_put_contents(/home/mrarqpph/public_html/oasis/wp-content/uploads/elementor/css/post-292.css): Failed to open stream: Disk quota exceeded\";s:4:\"file\";s:81:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:81:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;}s:32:\"8ca9d2b5318dd1f268883ed7d99eb65c\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-03 06:31:30\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:1678:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module-&gt;is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module-&gt;__construct()\n#2 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager-&gt;__construct()\n#4 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin-&gt;init_components()\n#5 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Plugin-&gt;init()\n#6 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook-&gt;apply_filters()\n#7 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook-&gt;do_action()\n#8 /home/mrarqpph/public_html/oasis/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/oasis/wp-config.php(104): require_once(&#039;/home/mrarqpph/...&#039;)\n#10 /home/mrarqpph/public_html/oasis/wp-load.php(50): require_once(&#039;/home/mrarqpph/...&#039;)\n#11 /home/mrarqpph/public_html/oasis/wp-blog-header.php(13): require_once(&#039;/home/mrarqpph/...&#039;)\n#12 /home/mrarqpph/public_html/oasis/index.php(17): require(&#039;/home/mrarqpph/...&#039;)\n#13 {main}\n  thrown\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:70;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-02-05 10:37:13\";i:1;s:19:\"2026-02-05 10:37:14\";i:2;s:19:\"2026-02-05 10:37:14\";i:3;s:19:\"2026-02-05 10:37:32\";i:4;s:19:\"2026-02-05 10:37:32\";i:5;s:19:\"2026-02-05 10:37:33\";i:6;s:19:\"2026-02-05 10:37:51\";i:7;s:19:\"2026-02-05 10:37:51\";i:8;s:19:\"2026-02-05 10:37:51\";i:9;s:19:\"2026-02-08 12:32:28\";i:10;s:19:\"2026-02-08 12:32:28\";i:11;s:19:\"2026-02-08 12:32:30\";i:12;s:19:\"2026-02-08 15:38:27\";i:13;s:19:\"2026-02-08 15:38:27\";i:14;s:19:\"2026-02-08 15:38:27\";i:15;s:19:\"2026-02-08 15:38:48\";i:16;s:19:\"2026-02-08 15:38:48\";i:17;s:19:\"2026-02-08 15:38:50\";i:18;s:19:\"2026-02-09 07:11:04\";i:19;s:19:\"2026-02-09 07:11:04\";i:20;s:19:\"2026-02-09 07:11:04\";i:21;s:19:\"2026-02-09 07:44:06\";i:22;s:19:\"2026-02-09 07:44:06\";i:23;s:19:\"2026-02-09 08:41:49\";i:24;s:19:\"2026-02-09 08:41:49\";i:25;s:19:\"2026-02-09 09:27:49\";i:26;s:19:\"2026-02-09 09:27:49\";i:27;s:19:\"2026-02-09 09:28:10\";i:28;s:19:\"2026-02-09 09:28:10\";i:29;s:19:\"2026-02-09 09:28:11\";i:30;s:19:\"2026-02-09 10:33:24\";i:31;s:19:\"2026-02-09 10:34:37\";i:32;s:19:\"2026-02-09 10:34:37\";i:33;s:19:\"2026-02-09 10:34:39\";i:34;s:19:\"2026-02-09 10:59:11\";i:35;s:19:\"2026-02-09 10:59:11\";i:36;s:19:\"2026-02-14 06:06:19\";i:37;s:19:\"2026-02-14 06:06:27\";i:38;s:19:\"2026-02-14 08:46:38\";i:39;s:19:\"2026-02-14 09:27:54\";i:40;s:19:\"2026-02-14 09:27:54\";i:41;s:19:\"2026-02-14 09:27:55\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:5:\"error\";s:7:\"message\";s:1617:\"Uncaught WpOrg\\Requests\\Exception\\Http\\Status403: 403 Forbidden in /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php:207\nStack trace:\n#0 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php(57): Elementor\\Modules\\CloudLibrary\\Module->is_screenshot_proxy_mode()\n#1 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/base/module.php(86): Elementor\\Modules\\CloudLibrary\\Module->__construct()\n#2 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/core/modules-manager.php(64): Elementor\\Core\\Base\\Module::instance()\n#3 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/plugin.php(703): Elementor\\Core\\Modules_Manager->__construct()\n#4 /home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/plugin.php(621): Elementor\\Plugin->init_components()\n#5 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(341): Elementor\\Plugin->init()\n#6 /home/mrarqpph/public_html/oasis/wp-includes/class-wp-hook.php(365): WP_Hook->apply_filters()\n#7 /home/mrarqpph/public_html/oasis/wp-includes/plugin.php(522): WP_Hook->do_action()\n#8 /home/mrarqpph/public_html/oasis/wp-settings.php(742): do_action()\n#9 /home/mrarqpph/public_html/oasis/wp-config.php(104): require_once(\'/home/mrarqpph/...\')\n#10 /home/mrarqpph/public_html/oasis/wp-load.php(50): require_once(\'/home/mrarqpph/...\')\n#11 /home/mrarqpph/public_html/oasis/wp-blog-header.php(13): require_once(\'/home/mrarqpph/...\')\n#12 /home/mrarqpph/public_html/oasis/index.php(17): require(\'/home/mrarqpph/...\')\n#13 {main}\n  thrown\";s:4:\"file\";s:94:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:4:\"line\";i:207;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:94:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/modules/cloud-library/module.php\";s:7:\"\0*\0line\";i:207;}s:32:\"e6e076c9d7c1040e07469a28b2906569\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-08 13:27:17\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read properties of null (reading &#039;id&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-08 13:27:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770557237\";s:7:\"message\";s:45:\"Cannot read properties of null (reading \'id\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1236225\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1236225\";}s:32:\"717cbb4733246a3c7f861b5b17f4667a\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-09 09:29:11\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of undefined (reading &#039;2&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2026-02-09 09:29:11\";i:1;s:19:\"2026-02-09 09:29:12\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770629351\";s:7:\"message\";s:49:\"Cannot read properties of undefined (reading \'2\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1099305\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1099305\";}s:32:\"0942588b10e0733e205f39b27ab1b2e3\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-09 09:29:14\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of undefined (reading &#039;1&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2026-02-09 09:29:14\";i:1;s:19:\"2026-02-09 09:29:16\";i:2;s:19:\"2026-02-09 09:29:23\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770629354\";s:7:\"message\";s:49:\"Cannot read properties of undefined (reading \'1\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1099305\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1099305\";}s:32:\"25f70988c97139781b1ae2d5ba86014a\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-09 09:29:51\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of undefined (reading &#039;0&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-09 09:29:51\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770629391\";s:7:\"message\";s:49:\"Cannot read properties of undefined (reading \'0\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1099305\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1099305\";}s:32:\"2e9c740d5b51d70a3c8136f7d2c75a57\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:7:\"\0*\0date\";s:19:\"2026-02-09 09:29:53\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:59:\"Cannot read properties of undefined (reading &#039;3&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-09 09:29:53\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1770629393\";s:7:\"message\";s:49:\"Cannot read properties of undefined (reading \'3\')\";s:3:\"url\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:7:\"1099305\";}s:7:\"\0*\0file\";s:87:\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.35.0\";s:7:\"\0*\0line\";s:1:\"2\";s:9:\"\0*\0column\";s:7:\"1099305\";}s:32:\"c7fae8e3bd11620f5fd55c5574ec2801\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"f04b7bea3ca09c35f8725d0062a008d5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:48:\"Elementor Pro/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"ff80513234c9751d743a226acb132164\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:50:\"Elementor Pro/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"226862509f531397e70faea37582bb75\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:21\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"556cb7878c3ce0e0d9d3c240307535ad\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:21\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:13:\"Elementor Pro\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f3b68d49457823d0815a560ee8281e76\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"7e66f223187ec68e5602285dfb73e726\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"b6c86e7432e5bc1b3d9b355f7a84c94b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bae1005ca645c0a28965f9097e64eaaa\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1c9fd1a2fda70da35aa60c8f7f14cbed\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2026-02-18 02:11:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2026-02-18 02:11:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.35.0\";s:2:\"to\";s:6:\"3.35.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"e08dc8801dea680e1228c8c693f257ee\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2026-02-19 07:10:38\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:38:\"Trying to access array offset on false\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2026-02-19 07:10:38\";i:1;s:19:\"2026-02-19 07:13:27\";i:2;s:19:\"2026-02-19 07:18:19\";i:3;s:19:\"2026-02-19 07:19:02\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:38:\"Trying to access array offset on false\";s:4:\"file\";s:89:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:89:\"/home/mrarqpph/public_html/oasis/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;}}', 'off'),
(204, 'elementor_enable_inspector', '', 'auto'),
(205, 'elementor_replace_url', '', 'auto'),
(206, 'elementor_rollback', '', 'auto'),
(207, 'elementor_beta', 'no', 'auto'),
(208, 'elementor_maintenance_mode_mode', '', 'auto'),
(209, 'elementor_maintenance_mode_exclude_mode', 'logged_in', 'auto'),
(210, 'elementor_maintenance_mode_exclude_roles', 'a:0:{}', 'auto'),
(211, 'elementor_maintenance_mode_template_id', '', 'auto'),
(214, 'recovery_mode_email_last_sent', '1770026881', 'auto'),
(231, 'edd_sl_1380e07af6fd2fb8cf7095284dd275e9', 'a:2:{s:7:\"timeout\";i:1771536743;s:5:\"value\";s:480:\"{\"new_version\":false,\"stable_version\":false,\"name\":\"\",\"slug\":\"powerpack-elements\",\"url\":\"\\/?changelog=1\",\"last_updated\":\"0000-00-00 00:00:00\",\"homepage\":false,\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"\",\"changelog\":\"\"},\"banners\":{\"high\":false,\"low\":false},\"icons\":[],\"msg\":\"No license key has been provided.\",\"description\":[\"\"],\"changelog\":[\"\"],\"plugin\":\"powerpack-elements\\/powerpack-elements.php\",\"id\":\"powerpack-elements\\/powerpack-elements.php\",\"tested\":null}\";}', 'off'),
(233, 'elementor_allow_tracking', 'yes', 'auto'),
(234, 'elementor_allow_tracking_last_update', '1770031687', 'auto'),
(235, 'elementor_tracker_last_send', '1772094890', 'auto'),
(125, 'theme_mods_twentytwentyfive', 'a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1770026528;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}', 'off'),
(126, '_transient_wp_styles_for_blocks', 'a:2:{s:4:\"hash\";s:32:\"3199e2537fbad380fa221e097719f7c6\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:0:\"\";s:18:\"core/term-template\";s:0:\"\";s:12:\"core/columns\";s:0:\"\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}', 'on'),
(229, '_elementor_pro_api_requests_lock', 'a:2:{s:11:\"get_version\";i:1771525943;s:16:\"get_license_data\";i:1771527751;}', 'auto'),
(238, 'elementor_pro_license_key', 'ep-ugLu1rp3BCnkcUMDdaUB1701104650EgD4W7ueft6i', 'auto'),
(221, 'elementor_pro_version', '3.35.1', 'auto'),
(222, 'elementor_pro_install_history', 'a:3:{s:6:\"3.17.1\";i:1770026981;s:6:\"3.35.0\";i:1770028934;s:6:\"3.35.1\";i:1771380681;}', 'auto'),
(223, 'widget_elementor-library', 'a:1:{s:12:\"_multiwidget\";i:1;}', 'auto'),
(224, '_elementor_pro_installed_time', '1770026981', 'auto'),
(225, 'elementor_submissions_db_version', '5', 'auto'),
(226, 'elementor_fonts_manager_font_types', 'a:0:{}', 'auto'),
(227, 'elementor_fonts_manager_fonts', 'a:0:{}', 'auto'),
(228, 'elementor_custom_icon_sets_config', 'a:0:{}', 'auto'),
(239, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:\"timeout\";i:1771614152;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(240, '_elementor_pro_license_v2_data', 'a:2:{s:7:\"timeout\";i:1771570952;s:5:\"value\";s:2845:\"{\"expires\":\"2026-11-27 00:00:00\",\"subscription_id\":\"14245656\",\"status\":\"ACTIVE\",\"recurring\":true,\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"off-canvas\",\"link-in-bio-var-2\",\"link-in-bio-var-3\",\"link-in-bio-var-4\",\"link-in-bio-var-5\",\"link-in-bio-var-6\",\"link-in-bio-var-7\",\"search\",\"size-variable\",\"transitions\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\",\"atomic-custom-attributes\",\"atomic-custom-css\"],\"tier\":\"agency\",\"generation\":\"empty\",\"activated\":true,\"success\":true}\";}', 'off'),
(241, 'elementor_notes_db_version', '5', 'auto');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(242, '_elementor_notifications_data', 'a:2:{s:7:\"timeout\";i:1771488164;s:5:\"value\";s:12018:\"[{\"id\":\"one-launch\",\"title\":\"Introducing Elementor One\",\"description\":\"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/one-launch.png\",\"chipTags\":[\"New Launch\"],\"cta\":\"Explore Elementor One\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/launch-whats-new\"},{\"id\":\"atomic-tabs-3.34\",\"title\":\"Atomic Tabs\",\"description\":\"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/tabs-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"interactions-3.34\",\"title\":\"Entrance Interactions\",\"description\":\"Add subtle, performance\\u2011minded Fade, Scale or Slide effects to your elements from the new Interaction panel.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/interactions-3.34.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.34-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-manager-3.33\",\"title\":\"Variables Manager\",\"description\":\"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-variables-manager.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"custom-css-3.33\",\"title\":\"Custom CSS\",\"description\":\"Write isolated, responsive, and state-based CSS directly inside atomic elements for pixel-perfect control.\",\"topic\":\"Elementor Pro 3.33\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-custom-css.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-custom-css\\/\"},{\"id\":\"blend-mode-3.33\",\"title\":\"Blend Mode\",\"description\":\"Layer and blend visuals to create depth, contrast, and cinematic design effects.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.33-blend.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.33-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"transform-3.32\",\"title\":\"Design with depth using Transform\",\"description\":\"Move, scale, rotate, and skew any element with ease. Transform controls add depth, stacked effects, and seamless States for hover, focus, and active micro-interactions.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transform.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"size-variable-3.32\",\"title\":\"Consistency with Size Variables\",\"description\":\"Define reusable values for properties like spacing or typography, then update them once to scale changes instantly across your site.\",\"topic\":\"Elementor Pro 3.32\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-size-variables.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-size-variable\\/\"},{\"id\":\"transitions-3.32\",\"title\":\"Smooth interactions with Transitions\",\"description\":\"Bring polish to every interaction. Transitions let you animate style changes smoothly between states. In Pro, layer multiple transitions by property for refined, modern micro-animations.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.32-transition.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.32-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"variables-3.31\",\"title\":\"Scalable design with Variables\",\"description\":\"Define once, reuse everywhere. Color & Font Variables help you build consistent, scalable design systems that update globally and are perfect for large sites or teams.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-variables.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"filters-3.31\",\"title\":\"Visual effects with Filters and Backdrop Filters\",\"description\":\"Apply multiple Filters like blur, brightness, and contrast. Stack, reorder, and preview in real time without writing a line of code.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-filters.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"ally-assistant\",\"title\":\"New! Fix accessibility issues with Ally Assistant\",\"description\":\"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-assistant.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Scan for free\",\"ctaLink\":\"http:\\/\\/go.elementor.com\\/acc-assistant-launch-whats-new\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"classes-3.31\",\"title\":\"Smarter Class Manager tools\",\"description\":\"Quickly locate and manage Global Classes with usage counts, a new locator panel, and full class search. Perfect for scaling and refactoring complex design systems.\",\"topic\":\"Editor V4\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-classes.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"attributes-3.31\",\"title\":\"Add semantic HTML with Attributes\",\"description\":\"Add custom HTML attributes like aria-*, data-*, and role to any element. Structure your markup for better accessibility, performance, and compliance.\",\"topic\":\"Elementor Pro 3.31\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.31-attributes.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.31-attributes\\/\"},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.39-v4-blog\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"cloud-websites-3.30\",\"title\":\"Full Website Templates in the cloud\",\"description\":\"Save and apply entire websites, including multiple pages, styles, site settings, media, and layout configurations - directly from the cloud.\",\"topic\":\"Elementor Pro 3.30\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/cloud-3.30.png\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade now\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-3.30-cloud-websites\\/\"},{\"id\":\"ally-notification\",\"title\":\"Just released! Ally - a new plugin for web accessibility & usability\",\"description\":\"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.\",\"topic\":\"Ally by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get it free\",\"ctaLink\":\"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"pojo-accessibility\\/pojo-accessibility.php\"}]]},{\"id\":\"ai-site-planner\",\"title\":\"Instant Sitemaps & Wireframes\",\"description\":\"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.\",\"topic\":\"Elementor AI\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/\",\"readMoreText\":\"Learn More\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"site-mailer-introducing\",\"title\":\"Introducing Site Mailer\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"topic\":\"Site Mailer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"site-mailer\\/site-mailer.php\"}]]}]\";}', 'off'),
(128, 'recovery_keys', 'a:0:{}', 'off'),
(797, 'auto_core_update_notified', 'a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:21:\"arifwebsols@gmail.com\";s:7:\"version\";s:5:\"6.9.1\";s:9:\"timestamp\";i:1770200006;}', 'off'),
(154, 'finished_updating_comment_type', '1', 'auto'),
(2080, '_transient_bmi_latest_size_contents_others', '103', 'on'),
(2070, '_irb_h_bn_review', 'a:2:{s:5:\"users\";a:0:{}s:13:\"backup-backup\";i:1771525948;}', 'auto'),
(2066, 'bmi_hotfixes', 'a:5:{i:0;s:13:\"BMI_D17_M1_26\";i:1;s:14:\"BMI_D13_M12_01\";i:2;s:14:\"BMI_D20_M07_01\";i:3;s:18:\"BMI_D17_M12_Y21_02\";i:4;s:18:\"BMI_D13_M08_Y23_01\";}', 'auto'),
(2067, 'bmi_initial_installation_version', '2.1.1', 'auto'),
(2076, 'bmip_to_be_uploaded', 'a:3:{s:14:\"current_upload\";a:0:{}s:5:\"queue\";a:0:{}s:6:\"failed\";a:0:{}}', 'auto'),
(2069, 'analyst_cache', 's:6:\"a:0:{}\";', 'auto'),
(2065, '_site_transient_update_plugins', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1772094889;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:6:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:31:\"backup-backup/backup-backup.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/backup-backup\";s:4:\"slug\";s:13:\"backup-backup\";s:6:\"plugin\";s:31:\"backup-backup/backup-backup.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/backup-backup/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/backup-backup.2.1.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/backup-backup/assets/icon-128x128.png?rev=2995566\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/backup-backup/assets/banner-772x250.png?rev=2429136\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.35.5\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:35:\"litespeed-cache/litespeed-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/litespeed-cache\";s:4:\"slug\";s:15:\"litespeed-cache\";s:6:\"plugin\";s:35:\"litespeed-cache/litespeed-cache.php\";s:11:\"new_version\";s:3:\"7.7\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/litespeed-cache/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/litespeed-cache.7.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181\";s:2:\"1x\";s:68:\"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181\";s:2:\"1x\";s:70:\"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.35.1\";s:12:\"last_updated\";s:19:\"2026-02-11 10:26:59\";s:11:\"new_version\";s:6:\"3.35.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:373:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcxNTI1OTQzLCJleHAiOjE3NzE2MTIzNDN9.sT7Ic8JzLmd6cm_z7TL8lhvjndihFmuA_8QIlvYku1k/package_download\";s:13:\"download_link\";s:373:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcxNTI1OTQzLCJleHAiOjE3NzE2MTIzNDN9.sT7Ic8JzLmd6cm_z7TL8lhvjndihFmuA_8QIlvYku1k/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.9.1\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:350:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJpYXQiOjE3NzE1MjU5NDMsImV4cCI6MTc3MTYxMjM0M30.RdXddLxD_5E1mjvLJZevnEzMyLH_fXY4qoaBI1fV1Cw/previous_download\";s:13:\"download_link\";s:350:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJpYXQiOjE3NzE1MjU5NDMsImV4cCI6MTc3MTYxMjM0M30.RdXddLxD_5E1mjvLJZevnEzMyLH_fXY4qoaBI1fV1Cw/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:7:\"checked\";a:7:{s:19:\"akismet/akismet.php\";s:3:\"5.6\";s:31:\"backup-backup/backup-backup.php\";s:5:\"2.1.1\";s:23:\"elementor/elementor.php\";s:6:\"3.35.5\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.35.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:35:\"litespeed-cache/litespeed-cache.php\";s:3:\"7.7\";s:41:\"powerpack-elements/powerpack-elements.php\";s:6:\"2.10.3\";}}', 'off'),
(2162, '_transient_timeout_elementor_rollback_versions_3.35.5', '1772699691', 'off'),
(2163, '_transient_elementor_rollback_versions_3.35.5', 'a:30:{i:0;s:6:\"3.35.4\";i:1;s:6:\"3.35.3\";i:2;s:6:\"3.35.2\";i:3;s:6:\"3.35.1\";i:4;s:6:\"3.35.0\";i:5;s:6:\"3.34.4\";i:6;s:6:\"3.34.3\";i:7;s:6:\"3.34.2\";i:8;s:6:\"3.34.1\";i:9;s:6:\"3.34.0\";i:10;s:6:\"3.33.6\";i:11;s:6:\"3.33.5\";i:12;s:6:\"3.33.4\";i:13;s:6:\"3.33.3\";i:14;s:6:\"3.33.2\";i:15;s:6:\"3.33.1\";i:16;s:6:\"3.33.0\";i:17;s:6:\"3.32.5\";i:18;s:6:\"3.32.4\";i:19;s:6:\"3.32.3\";i:20;s:6:\"3.32.2\";i:21;s:6:\"3.32.1\";i:22;s:6:\"3.32.0\";i:23;s:6:\"3.31.5\";i:24;s:6:\"3.31.4\";i:25;s:6:\"3.31.3\";i:26;s:6:\"3.31.2\";i:27;s:6:\"3.31.1\";i:28;s:6:\"3.31.0\";i:29;s:6:\"3.30.4\";}', 'off'),
(1893, '_elementor_home_screen_data', 'a:2:{s:7:\"timeout\";i:1771274657;s:5:\"value\";s:12470:\"{\"top_with_licences\":[{\"license\":[\"free\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Start building your website with Elementor\'s no code drag & drop editor.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=le72grP_Q6k&t=1s\",\"youtube_embed_id\":\"le72grP_Q6k?si=g2akyWNODL6usu6u\"},{\"license\":[\"pro\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"},{\"license\":[\"one\"],\"title_small\":\"Hi!\",\"title\":\"Unleash your imagination with Elementor\",\"description\":\"Now you\'ve got all the tools to start creating professional, high-performing websites - and that journey begins by creating your first page.\",\"button_create_page_title\":\"Create a Page\",\"button_watch_title\":\"Watch a guide\",\"button_watch_url\":\"https:\\/\\/www.youtube.com\\/watch?v=QdkDGrS8ZZs\",\"youtube_embed_id\":\"QdkDGrS8ZZs?si=s_VjZCQR6Fh1jgB5\"}],\"get_started\":[{\"license\":[\"free\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&page=popup_templates\",\"is_relative_url\":true,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"title_small_color\":\"text.tertiary\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\",\"title_small_color\":\"text.tertiary\"}]},{\"license\":[\"pro\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]},{\"license\":[\"one\"],\"header\":{\"title\":\"Jumpstart your web-creation\",\"description\":\"These quick actions will get your site airborne with a customized design.\"},\"repeater\":[{\"title\":\"Site Settings\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-settings.svg\"},{\"title\":\"Site Logo\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"settings-site-identity\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-logo.svg\"},{\"title\":\"Global Colors\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-colors\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-colors.svg\"},{\"title\":\"Global Fonts\",\"title_small\":\"Customize\",\"url\":\"\",\"is_relative_url\":false,\"tab_id\":\"global-typography\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/global-fonts.svg\"},{\"title\":\"Theme Builder\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor-app\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/theme-builder.svg\"},{\"title\":\"Popups\",\"title_small\":\"Customize\",\"url\":\"edit.php?post_type=elementor_library&tabs_group=popup&elementor_library_type=popup\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/popups.svg\"},{\"title\":\"Custom Icons\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_icons\",\"is_relative_url\":false,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-icons.svg\"},{\"title\":\"Custom Fonts\",\"title_small\":\"Customize\",\"url\":\"admin.php?page=elementor_custom_fonts\",\"is_relative_url\":true,\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/custom-fonts.svg\"}]}],\"add_ons\":{\"hide_section\":[\"free\",\"essential\",\"pro\",\"one\"],\"header\":{\"title\":\"Expand your design toolkit\",\"description\":\"These plugins, add-ons, and tools, have been selected to streamline your workflow and maximize your creativity.\"},\"repeater\":[{\"file_path\":\"pojo-accessibility\\/pojo-accessibility.php\",\"title\":\"Ally - Web Accessibility. Simplified.\",\"url\":\"\",\"description\":\"Make your website more accessible with powerful tools to detect and fix issues, enhance usability, and create a better experience for all visitors.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/ally_logo.svg\",\"type\":\"wporg\"},{\"file_path\":\"site-mailer\\/site-mailer.php\",\"title\":\"Site Mailer\",\"url\":\"\",\"description\":\"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/site-mailer.svg\",\"type\":\"wporg\"},{\"file_path\":\"image-optimization\\/image-optimization.php\",\"title\":\"Image Optimizer\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-io\\/\",\"description\":\"Check out this incredibly useful plugin that will compress and optimize your images, giving you leaner, faster websites.\",\"button_label\":\"Install\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/image-optimizer.svg\",\"type\":\"wporg\"},{\"title\":\"Elementor AI\",\"url\":\"https:\\/\\/go.elementor.com\\/wp-dash-apps-author-uri-elementor-ai\\/\",\"description\":\"Boost creativity with Elementor AI. Craft & enhance copy, create custom CSS & Code, and generate images to elevate your website.\",\"button_label\":\"Let\'s go\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/elementor.svg\",\"type\":\"link\",\"condition\":{\"key\":\"introduction_meta\",\"value\":\"ai_get_started\"}}],\"footer\":{\"label\":\"Explore more add-ons\",\"file_path\":\"wp-admin\\/admin.php?page=elementor-apps\"}},\"sidebar_promotion_variants\":[{\"license\":[\"essential\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/essential-upgrade.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-advanced-home-sidebar-upgrade\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\"}},{\"license\":[\"expired\"],\"is_enabled\":\"true\",\"type\":\"banner\",\"data\":{\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/upgrade-free.svg\",\"link\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-expired\\/\"}},{\"license\":[\"free\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"pro\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}},{\"license\":[\"one\"],\"is_enabled\":\"false\",\"type\":\"default\",\"data\":{\"header\":{\"title\":\"Bring your vision to life\",\"description\":\"Get complete design flexibility for your website with Elementor Pro\'s advanced tools and premium features.\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/update-sidebar.svg\"},\"cta\":{\"label\":\"Upgrade Now\",\"url\":\"https:\\/\\/go.elementor.com\\/go-pro-home-sidebar-upgrade\\/\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-crown.svg\"},\"repeater\":[{\"title\":\"Popup Builder\"},{\"title\":\"Custom Code & CSS\"},{\"title\":\"E-commerce Features\"},{\"title\":\"Collaborative Notes\"},{\"title\":\"Form Submission\"},{\"title\":\"Form Integrations\"},{\"title\":\"Custom Attributes\"},{\"title\":\"Role Manager\"}]}}],\"external_links\":[{\"label\":\"Help Center\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-question-mark.svg\",\"url\":\"https:\\/\\/elementor.com\\/help\\/\"},{\"label\":\"Youtube\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-youtube.svg\",\"url\":\"https:\\/\\/www.youtube.com\\/@Elementor\"},{\"label\":\"Facebook Community\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-community.svg\",\"url\":\"https:\\/\\/www.facebook.com\\/groups\\/Elementors\"},{\"label\":\"Blog\",\"image\":\"https:\\/\\/assets.elementor.com\\/home-screen\\/v1\\/images\\/icon-academic-hat.svg\",\"url\":\"https:\\/\\/elementor.com\\/blog\\/\"}]}\";}', 'off'),
(145, 'can_compress_scripts', '1', 'on'),
(165, 'current_theme', 'astra child', 'auto'),
(166, 'theme_mods_astra-child', 'a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:3;s:11:\"mobile_menu\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:636;}', 'on'),
(167, 'theme_switched', '', 'auto'),
(2161, '_site_transient_update_themes', 'O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1772094890;s:7:\"checked\";a:3:{s:11:\"astra-child\";s:5:\"1.0.0\";s:5:\"astra\";s:6:\"4.12.1\";s:16:\"twentytwentyfive\";s:3:\"1.4\";}s:8:\"response\";a:1:{s:5:\"astra\";a:6:{s:5:\"theme\";s:5:\"astra\";s:11:\"new_version\";s:6:\"4.12.3\";s:3:\"url\";s:35:\"https://wordpress.org/themes/astra/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/astra.4.12.3.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.3\";}}s:9:\"no_update\";a:1:{s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.4.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}}s:12:\"translations\";a:0:{}}', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1308, 'astra_partials_config_cache', 'a:2:{s:8:\"settings\";a:1114:{s:46:\"section-header-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[cloned-component-track]\";a:4:{s:7:\"default\";a:12:{s:13:\"header-button\";i:2;s:13:\"footer-button\";i:2;s:11:\"header-html\";i:2;s:11:\"footer-html\";i:2;s:11:\"header-menu\";i:2;s:13:\"header-widget\";i:4;s:13:\"footer-widget\";i:4;s:19:\"header-social-icons\";i:1;s:19:\"footer-social-icons\";i:1;s:14:\"header-divider\";i:0;s:14:\"footer-divider\";i:0;s:13:\"removed-items\";a:0:{}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-header]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-desktop-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:5:{s:10:\"above_left\";a:0:{}s:17:\"above_left_center\";a:0:{}s:12:\"above_center\";a:0:{}s:18:\"above_right_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:5:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:19:\"primary_left_center\";a:0:{}s:14:\"primary_center\";a:0:{}s:20:\"primary_right_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:6:\"menu-1\";}}s:5:\"below\";a:5:{s:10:\"below_left\";a:0:{}s:17:\"below_left_center\";a:0:{}s:12:\"below_center\";a:0:{}s:18:\"below_right_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-desktop-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-mobile-items]\";a:4:{s:7:\"default\";a:4:{s:5:\"popup\";a:1:{s:13:\"popup_content\";a:1:{i:0;s:11:\"mobile-menu\";}}s:5:\"above\";a:3:{s:10:\"above_left\";a:0:{}s:12:\"above_center\";a:0:{}s:11:\"above_right\";a:0:{}}s:7:\"primary\";a:3:{s:12:\"primary_left\";a:1:{i:0;s:4:\"logo\";}s:14:\"primary_center\";a:0:{}s:13:\"primary_right\";a:1:{i:0;s:14:\"mobile-trigger\";}}s:5:\"below\";a:3:{s:10:\"below_left\";a:0:{}s:12:\"below_center\";a:0:{}s:11:\"below_right\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-mobile-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-transparent-link-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-transparant-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-main-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:56:\"astra-settings[theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:28:\"astra-settings[button-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[button-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-4)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[button-bg-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[button-bg-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"36\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"36\";}s:6:\"tablet\";a:4:{s:3:\"top\";i:14;s:5:\"right\";i:28;s:6:\"bottom\";i:14;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:24;s:6:\"bottom\";i:12;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:2:\"30\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"30\";s:4:\"left\";s:2:\"30\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[secondary-button-preset-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[secondary-theme-button-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[secondary-theme-button-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[secondary-theme-button-border-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[secondary-theme-button-border-group-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:66:\"astra-settings[secondary-theme-button-border-group-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[secondary-button-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[secondary-button-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[secondary-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[secondary-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-theme-button-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:13;s:5:\"right\";i:30;s:6:\"bottom\";i:13;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";i:12;s:5:\"right\";i:28;s:6:\"bottom\";i:12;s:4:\"left\";i:28;}s:6:\"mobile\";a:4:{s:3:\"top\";i:10;s:5:\"right\";i:24;s:6:\"bottom\";i:10;s:4:\"left\";i:24;}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:63:\"astra-settings[secondary-theme-button-border-group-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:5:\"right\";i:2;s:6:\"bottom\";i:2;s:4:\"left\";i:2;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[secondary-button-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:34:\"section-secondary-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[narrow-container-max-width]\";a:4:{s:7:\"default\";i:750;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:7:\"default\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:22:\"sanitize_logo_svg_icon\";}}s:39:\"astra-settings[logo-svg-site-title-gap]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:1:\"5\";s:6:\"tablet\";s:1:\"5\";s:6:\"mobile\";s:1:\"5\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-header-responsive-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[display-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[display-site-tagline-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:0;s:6:\"tablet\";i:0;s:6:\"mobile\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[site-identity-title-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-color-site-title]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[logo-svg-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[logo-svg-icon-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-h-site-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-color-site-tagline]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[site-icon-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[blog-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-post-content]\";a:4:{s:7:\"default\";s:7:\"excerpt\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[blog-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[blog-layout]\";a:4:{s:7:\"default\";s:13:\"blog-layout-4\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[blog-post-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[archive-post-content-structure-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-post-structure]\";a:4:{s:7:\"default\";a:5:{i:0;s:5:\"image\";i:1;s:8:\"category\";i:2;s:5:\"title\";i:3;s:10:\"title-meta\";i:4;s:7:\"excerpt\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-meta-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[blog-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[blog-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:46:\"astra-settings[blog-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[blog-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-hover-effect]\";a:4:{s:7:\"default\";s:7:\"zoom-in\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:31:\"astra-settings[blog-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[blog-post-color-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[post-card-background-overlay]\";a:4:{s:7:\"default\";a:2:{s:15:\"background-type\";s:0:\"\";s:16:\"background-color\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[post-card-border-radius]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:6;s:5:\"right\";i:6;s:6:\"bottom\";i:6;s:4:\"left\";i:6;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[blog-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[blog-post-meta-divider-type]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[blog-meta-category-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[blog-meta-tag-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:29:\"section-blog-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[blog-meta]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[blog-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[blog-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[single-content-images-shadow]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-blog-single-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[single-post-outside-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[single-post-inside-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"section-blog-single-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[site-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-sidebar-width]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[site-sidebar-width-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:35:\"astra-settings[site-sticky-sidebar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-sidebar-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[ast-site-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[site-content-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[surface-colors-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[site-layout-outside-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-5)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[content-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:15:\"background-type\";s:5:\"color\";s:16:\"background-media\";s:0:\"\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-site-layout-button-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[global-color-palette]\";a:4:{s:7:\"default\";a:2:{s:7:\"palette\";a:9:{i:0;s:7:\"#108490\";i:1;s:7:\"#ef4922\";i:2;s:7:\"#000000\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f0f7f8\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#fec010\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:20:\"astra-color-palettes\";a:4:{s:7:\"default\";a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#108490\";i:1;s:7:\"#ef4922\";i:2;s:7:\"#000000\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f0f7f8\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#fec010\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[theme-color-divider-reset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[theme-color]\";a:4:{s:7:\"default\";s:7:\"#106e79\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[base-link-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[link-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-0)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[link-h-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-1)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:26:\"astra-settings[text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[border-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-7)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[ast-blog-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[font-size-page-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[font-size-post-meta]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-size-post-tax]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:14;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-body-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-body-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-family]\";a:4:{s:7:\"default\";s:21:\"\'DM Sans\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:33:\"astra-settings[body-font-variant]\";a:4:{s:7:\"default\";s:11:\"300,400,500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:32:\"astra-settings[body-font-weight]\";a:4:{s:7:\"default\";s:3:\"400\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:30:\"astra-settings[font-size-body]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[body-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.65\";s:16:\"line-height-unit\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[ast-headings-font-settings]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-headings-font-settings-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[headings-font-family]\";a:4:{s:7:\"default\";s:23:\"\'Open Sans\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:36:\"astra-settings[headings-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:37:\"astra-settings[headings-font-variant]\";a:4:{s:7:\"default\";s:15:\"500,600,700,800\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_font_variant\";}}s:36:\"astra-settings[headings-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[para-margin-bottom]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[underline-content-links]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h1-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h2-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h3-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h4-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h5-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[ast-heading-h6-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:28:\"astra-settings[wp-blocks-ui]\";a:4:{s:7:\"default\";s:7:\"comfort\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[wp-blocks-global-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[wp-blocks-ui-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:33:\"comments-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[comments-single-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-comments-area]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[comments-box-placement]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[comments-box-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[comment-form-position]\";a:4:{s:7:\"default\";s:5:\"below\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-comments-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[ast-sub-section-comments-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-sub-section-comments-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";i:2;s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[ast-sub-section-comments-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:30:\"astra-settings[font-family-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h1]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h1]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.4\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h2]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:40;s:6:\"tablet\";i:25;s:6:\"mobile\";i:25;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h2]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h3]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h3]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:35;s:6:\"tablet\";i:20;s:6:\"mobile\";i:20;s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h3]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.3\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h4]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h4]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:30;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h4]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h5]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h5]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:24;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h5]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.2\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-family-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:30:\"astra-settings[font-weight-h6]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:28:\"astra-settings[font-size-h6]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:20;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[font-extras-h6]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:4:\"1.25\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-typography-presets\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[enable-scroll-to-id]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[site-accessibility-toggle]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[site-accessibility-highlight-type]\";a:4:{s:7:\"default\";s:6:\"dotted\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[site-accessibility-highlight-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[site-accessibility-highlight-input-type]\";a:4:{s:7:\"default\";s:7:\"disable\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[site-accessibility-highlight-input-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[astra-pro-section-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[single-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[single-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[single-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[page-single-width]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[page-single-max-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"ast-dynamic-single-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-single-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:43:\"ast-dynamic-single-e-floating-buttons-title\";i:1;s:42:\"ast-dynamic-single-e-floating-buttons-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:94:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:87:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:92:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:95:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:96:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:101:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-e-floating-buttons-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:76:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:79:\"astra-settings[ast-dynamic-single-e-floating-buttons-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-e-floating-buttons-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-single-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[ast-dynamic-single-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:77:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-single-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:82:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"ast-dynamic-single-e-floating-buttons-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[single-posttype-e-floating-buttons-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:57:\"astra-settings[single-posttype-e-floating-buttons-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:62:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-single-e-floating-buttons-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-post-ast-content-layout]\";a:4:{s:7:\"default\";s:20:\"full-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-post-sidebar-style]\";a:4:{s:7:\"default\";s:5:\"boxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-post-title\";i:1;s:28:\"ast-dynamic-single-post-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-post-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-post-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-post-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-post-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-post-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-post-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-post-metadata]\";a:4:{s:7:\"default\";a:2:{i:0;s:6:\"author\";i:1;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-post-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-post-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-post-elements-gap]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-post-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-post-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:13;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[ast-dynamic-single-post-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-post-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-1]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-1-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-single-post-taxonomy-2]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-post-taxonomy-2-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[single-page-ast-content-layout]\";a:4:{s:7:\"default\";s:22:\"normal-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-content-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[single-page-sidebar-layout]\";a:4:{s:7:\"default\";s:10:\"no-sidebar\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[single-page-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"unboxed\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"ast-dynamic-single-page-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-single-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[ast-dynamic-single-page-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-dynamic-single-page-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:29:\"ast-dynamic-single-page-image\";i:1;s:29:\"ast-dynamic-single-page-title\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-1]\";a:4:{s:7:\"default\";s:6:\"behind\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:80:\"astra-settings[ast-dynamic-single-page-article-featured-image-position-layout-2]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-width-type]\";a:4:{s:7:\"default\";s:4:\"wide\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-type]\";a:4:{s:7:\"default\";s:10:\"predefined\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-single-page-article-featured-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:82:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:87:\"astra-settings[ast-dynamic-single-page-article-featured-image-custom-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-single-page-article-featured-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-remove-featured-padding]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-featured-as-background]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-featured-overlay]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[ast-dynamic-single-page-taxonomy-clone-tracker]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-structural-taxonomy]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[ast-dynamic-single-page-structural-taxonomy-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[ast-dynamic-single-page-metadata]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:6:\"author\";i:2;s:4:\"date\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-single-page-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-single-page-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[ast-dynamic-single-page-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-single-page-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-dynamic-single-page-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-background]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-single-page-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[ast-dynamic-single-page-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-single-page-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-single-page-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-single-page-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-single-page-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-single-page-banner-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:54:\"astra-settings[ast-dynamic-single-page-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[ast-dynamic-single-page-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-single-page-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:54:\"astra-settings[ast-dynamic-single-page-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:76:\"astra-settings[ast-dynamic-single-page-disable-structure-meta-on-front-page]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"ast-dynamic-single-page-parent-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-single-page-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-single-page-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:61:\"astra-settings[archive-e-floating-buttons-ast-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[archive-e-floating-buttons-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[archive-e-floating-buttons-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"ast-dynamic-archive-e-floating-buttons-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[ast-archive-e-floating-buttons-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-e-floating-buttons-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:74:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-e-floating-buttons-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:44:\"ast-dynamic-archive-e-floating-buttons-title\";i:1;s:50:\"ast-dynamic-archive-e-floating-buttons-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:81:\"astra-settings[ast-dynamic-archive-e-floating-buttons-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[ast-dynamic-archive-e-floating-buttons-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-e-floating-buttons-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:73:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:78:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:84:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:83:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[ast-dynamic-archive-e-floating-buttons-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:70:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:72:\"astra-settings[ast-dynamic-archive-e-floating-buttons-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:69:\"astra-settings[ast-dynamic-archive-e-floating-buttons-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:47:\"astra-settings[archive-post-ast-content-layout]\";a:4:{s:7:\"default\";s:20:\"full-width-container\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[archive-post-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[archive-post-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"ast-dynamic-archive-post-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-archive-post-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[ast-dynamic-archive-post-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[ast-dynamic-archive-post-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[ast-dynamic-archive-post-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:30:\"ast-dynamic-archive-post-title\";i:1;s:36:\"ast-dynamic-archive-post-description\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-custom-title]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-custom-title-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-custom-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[ast-dynamic-archive-post-custom-description-support]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[ast-dynamic-archive-post-horizontal-alignment]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-dynamic-archive-post-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[ast-dynamic-archive-post-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[ast-dynamic-archive-post-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[ast-dynamic-archive-post-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:69:\"astra-settings[ast-dynamic-archive-post-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:55:\"astra-settings[ast-dynamic-archive-post-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[ast-dynamic-archive-post-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[ast-dynamic-archive-post-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"32\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-dynamic-archive-post-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[ast-dynamic-archive-post-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[ast-dynamic-archive-post-banner-on-blog]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-search-page-title-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[ast-search-page-title]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-search-page-title-layout]\";a:4:{s:7:\"default\";s:8:\"layout-1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-width-type]\";a:4:{s:7:\"default\";s:9:\"fullwidth\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[section-search-page-title-banner-custom-width]\";a:4:{s:7:\"default\";i:1200;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[section-search-page-title-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:31:\"section-search-page-title-title\";i:1;s:36:\"section-search-page-title-breadcrumb\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-custom-title]\";a:4:{s:7:\"default\";s:19:\"Search Results for:\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:66:\"astra-settings[section-search-page-title-found-custom-description]\";a:4:{s:7:\"default\";s:44:\"Here are the search results for your search.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-not-found-custom-description]\";a:4:{s:7:\"default\";s:85:\"Sorry, but we could not find anything related to your search terms. Please try again.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-search-page-title-horizontal-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-search-page-title-elements-gap]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-image-type]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-banner-custom-bg]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"tablet\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}s:6:\"mobile\";a:12:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";s:15:\"background-type\";s:0:\"\";s:16:\"background-media\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-search-page-title-banner-title-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-banner-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[section-search-page-title-banner-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:71:\"astra-settings[section-search-page-title-banner-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:70:\"astra-settings[section-search-page-title-banner-text-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:58:\"astra-settings[section-search-page-title-text-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:56:\"astra-settings[section-search-page-title-text-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[section-search-page-title-text-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:59:\"astra-settings[section-search-page-title-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"600\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:57:\"astra-settings[section-search-page-title-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:32;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[section-search-page-title-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-search-page-title-banner-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-search-page-title-banner-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:3;s:5:\"right\";i:3;s:6:\"bottom\";i:3;s:4:\"left\";i:3;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[ast-search-content-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-content-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[ast-search-sidebar-layout]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-sidebar-style]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[ast-search-results-style]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[ast-search-results-per-page]\";a:4:{s:7:\"default\";i:10;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[ast-search-live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[ast-search-live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-section-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"related-posts-section-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[enable-related-posts]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:7:\"default\";s:13:\"Related Posts\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[releted-posts-title-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-structure]\";a:4:{s:7:\"default\";a:2:{i:0;s:14:\"featured-image\";i:1;s:10:\"title-meta\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-metadata-separator]\";a:4:{s:7:\"default\";s:1:\"/\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-structure]\";a:4:{s:7:\"default\";a:3:{i:0;s:8:\"comments\";i:1;s:8:\"category\";i:2;s:6:\"author\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-image-ratio-type]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-image-ratio-pre-scale]\";a:4:{s:7:\"default\";s:4:\"16/9\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-image-custom-scale-width]\";a:4:{s:7:\"default\";i:16;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:55:\"astra-settings[related-posts-image-custom-scale-height]\";a:4:{s:7:\"default\";i:9;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_number_n_blank\";}}s:60:\"astra-settings[related-posts-custom-image-scale-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-image-size]\";a:4:{s:7:\"default\";s:5:\"large\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-author-prefix-label]\";a:4:{s:7:\"default\";s:3:\"By \";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-author-avatar]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[related-posts-author-avatar-size]\";a:4:{s:7:\"default\";i:30;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-meta-date-type]\";a:4:{s:7:\"default\";s:9:\"published\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-date-format]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[related-posts-category-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[related-posts-tag-style]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[enable-related-posts-excerpt]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-excerpt-count]\";a:4:{s:7:\"default\";i:25;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-total-count]\";a:4:{s:7:\"default\";i:2;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-grid-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-query-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-based-on]\";a:4:{s:7:\"default\";s:10:\"categories\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[related-posts-order-by]\";a:4:{s:7:\"default\";s:4:\"date\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[related-posts-order]\";a:4:{s:7:\"default\";s:3:\"asc\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[related-posts-box-placement]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-outside-location]\";a:4:{s:7:\"default\";s:5:\"above\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[related-posts-container-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[related-posts-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[related-posts-section-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[related-posts-title-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[related-posts-content-typography-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-text-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[related-posts-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[related-posts-title-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[related-posts-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[related-posts-meta-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[related-posts-meta-link-hover-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:47:\"astra-settings[related-posts-title-font-weight]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:45:\"astra-settings[related-posts-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"20\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[related-posts-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.5\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:55:\"astra-settings[related-posts-section-title-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:53:\"astra-settings[related-posts-section-title-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"26\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[related-posts-section-title-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[related-posts-meta-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[related-posts-meta-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"14\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[related-posts-meta-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:3:\"1.6\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:49:\"astra-settings[related-posts-content-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:47:\"astra-settings[related-posts-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[related-posts-content-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[ast-sub-section-related-posts-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:59:\"astra-settings[ast-sub-section-related-posts-border-radius]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[ast-sub-section-related-posts-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";d:2.5;s:5:\"right\";d:2.5;s:6:\"bottom\";d:2.5;s:4:\"left\";d:2.5;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[ast-sub-section-related-posts-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:2;s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"em\";s:11:\"tablet-unit\";s:2:\"em\";s:11:\"mobile-unit\";s:2:\"em\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[transparent-header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hba-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[hbb-transparent-header-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[transparent-header-color-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:64:\"astra-settings[transparent-header-color-h-site-title-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-menu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-submenu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-submenu-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-submenu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[transparent-content-section-link-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-content-section-link-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-enable]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[transparent-header-disable-404-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-disable-search-page]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-disable-archive-pages]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-index]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-disable-latest-posts-index]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[transparent-header-disable-page]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[transparent-header-disable-posts]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[transparent-header-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[different-transparent-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:49:\"astra-settings[different-transparent-retina-logo]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-retina-logo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:11:\"esc_url_raw\";}s:45:\"astra-settings[transparent-header-logo-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:150;s:6:\"tablet\";i:120;s:6:\"mobile\";i:100;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[transparent-header-main-sep]\";a:4:{s:7:\"default\";i:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-main-sep-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[divider-sec-transparent-styling]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[transparent-header-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-header-colors-menu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[transparent-header-colors-submenu]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"section-transparent-header-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:61:\"astra-settings[transparent-header-social-text-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[transparent-header-social-background-colors-content]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[transparent-header-social-icons-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-social-icons-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-social-icons-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:58:\"astra-settings[transparent-header-social-icons-bg-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-html-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[transparent-header-html-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-html-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-html-link-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-search-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:62:\"astra-settings[transparent-header-search-box-background-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:53:\"astra-settings[transparent-header-buttons-text-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:59:\"astra-settings[transparent-header-buttons-background-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[transparent-header-buttons-border-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[transparent-header-button-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-text-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[transparent-header-button-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[transparent-header-button-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:54:\"astra-settings[transparent-header-button-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[transparent-header-button-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[transparent-account-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:51:\"astra-settings[transparent-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[transparent-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:7:\"default\";s:4:\"none\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[breadcrumb-position-none-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:49:\"astra-settings[breadcrumb-disable-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[breadcrumb-disable-on]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[breadcrumb-disable-home-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-disable-blog-posts-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[breadcrumb-disable-search]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-disable-archive]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[breadcrumb-disable-single-post]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-singular]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[breadcrumb-disable-404-page]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-alignment]\";a:4:{s:7:\"default\";s:4:\"left\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[breadcrumb-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[breadcrumb-separator-selector]\";a:4:{s:7:\"default\";s:5:\"\\003E\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[breadcrumb-separator]\";a:4:{s:7:\"default\";s:5:\"\\00bb\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"section-breadcrumb-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-color-section-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[breadcrumb-bg-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[breadcrumb-active-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[breadcrumb-separator-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[section-breadcrumb-link-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[breadcrumb-text-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[breadcrumb-hover-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[section-breadcrumb-typo]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:38:\"astra-settings[breadcrumb-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:36:\"astra-settings[breadcrumb-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[breadcrumb-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[scroll-to-top-enable]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-on-devices]\";a:4:{s:7:\"default\";s:4:\"both\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[scroll-to-top-icon-position]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[scroll-to-top-icon-size]\";a:4:{s:7:\"default\";i:15;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[scroll-on-top-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[scroll-on-top-bg-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[scroll-to-top-icon-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[scroll-to-top-icon-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[scroll-to-top-icon-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:42:\"astra-settings[scroll-to-top-icon-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:45:\"astra-settings[scroll-to-top-icon-h-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"section-scroll-to-top-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[enable-scroll-to-top-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:34:\"astra-settings[heading-base-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:38:\"astra-settings[button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[secondary-button-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-family-button]\";a:4:{s:7:\"default\";s:21:\"\'Poppins\', sans-serif\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:44:\"astra-settings[secondary-font-family-button]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:34:\"astra-settings[font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[secondary-font-weight-button]\";a:4:{s:7:\"default\";s:3:\"500\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:32:\"astra-settings[font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[secondary-font-size-button]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:2:\"16\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:1:\"1\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[secondary-font-extras-button]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";i:1;s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-footer-builder-layout-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"astra-settings[builder-footer]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[footer-bg-obj-responsive-description]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:7:\"default\";a:3:{s:5:\"above\";a:5:{s:7:\"above_1\";a:0:{}s:7:\"above_2\";a:0:{}s:7:\"above_3\";a:0:{}s:7:\"above_4\";a:0:{}s:7:\"above_5\";a:0:{}}s:7:\"primary\";a:5:{s:9:\"primary_1\";a:0:{}s:9:\"primary_2\";a:0:{}s:9:\"primary_3\";a:0:{}s:9:\"primary_4\";a:0:{}s:9:\"primary_5\";a:0:{}}s:5:\"below\";a:5:{s:7:\"below_1\";a:1:{i:0;s:9:\"copyright\";}s:7:\"below_2\";a:0:{}s:7:\"below_3\";a:0:{}s:7:\"below_4\";a:0:{}s:7:\"below_5\";a:0:{}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-draggable-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-builder-pro-items]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[section-footer-builder-layout-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:52:\"astra-settings[section-footer-builder-layout-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"section-above-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hba-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hba-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hba-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:60;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hbb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[hbb-header-bottom-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:36:\"astra-settings[hbb-header-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-header-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"astra-settings[header-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-header-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"section-header-mobile-trigger-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:7:\"default\";s:4:\"menu\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:7:\"default\";s:7:\"minimal\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[mobile-header-toggle-btn-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[mobile-header-toggle-icon-size]\";a:4:{s:7:\"default\";i:20;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-btn-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:52:\"astra-settings[mobile-header-toggle-btn-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:1;s:5:\"right\";i:1;s:6:\"bottom\";i:1;s:4:\"left\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[mobile-header-toggle-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[mobile-header-toggle-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:60:\"astra-settings[section-header-mobile-trigger-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-mobile-trigger-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:45:\"astra-settings[mobile-header-label-font-size]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-popup-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[mobile-header-type]\";a:4:{s:7:\"default\";s:8:\"dropdown\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[off-canvas-move-body]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[off-canvas-move-body-notice]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";s:0:\"\";}s:32:\"astra-settings[off-canvas-slide]\";a:4:{s:7:\"default\";s:5:\"right\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-builder-menu-toggle-target]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-offcanvas-content-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[off-canvas-background]\";a:4:{s:7:\"default\";a:10:{s:16:\"background-color\";s:7:\"#ffffff\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:23:\"sanitize_background_obj\";}}s:38:\"astra-settings[off-canvas-close-color]\";a:4:{s:7:\"default\";s:7:\"#3a3a3a\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:40:\"astra-settings[off-canvas-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[off-canvas-padding]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-header-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-header-height]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:80;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hb-header-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:55:\"var( --ast-global-color-primary, --ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-header-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:34:\"astra-settings[hb-header-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-header-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-header-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-header-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[logo-title-settings-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:30:\"title_tagline-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[header-logo-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[title_tagline-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[title_tagline-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:36:\"astra-settings[font-size-site-title]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:26;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[font-size-site-tagline]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[title_tagline-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-hb-button-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:7:\"default\";s:6:\"Button\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:23:\"https://www.wpastra.com\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:47:\"astra-settings[header-button1-text-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-button1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-text-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-text-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-button1-back-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-back-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:65:\"astra-settings[header-button1-builder-button-border-colors-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-button1-border-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-button1-border-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-border-size]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-button1-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:40;s:5:\"right\";i:40;s:6:\"bottom\";i:40;s:4:\"left\";i:40;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:46:\"astra-settings[header-button1-text-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:42:\"astra-settings[header-button1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:40:\"astra-settings[header-button1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-button1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-hb-button-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[section-hb-button-1-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";i:15;s:5:\"right\";i:30;s:6:\"bottom\";i:15;s:4:\"left\";i:30;}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-hb-button-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-hb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:15;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[header-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu1-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu1-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu1-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu1-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu1-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu1-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu1-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu1-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu1-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu1-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu1-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu1-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu1-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu1-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu1-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-1-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu1-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu1-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu1-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-1-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu1-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:55:\"astra-settings[section-hb-menu-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-hb-menu-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-hover-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-menu2-submenu-width]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-menu2-submenu-container-animation]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-menu2-submenu-container-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-menu2-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:47:\"astra-settings[header-menu2-submenu-top-offset]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-menu2-submenu-border]\";a:4:{s:7:\"default\";a:4:{s:3:\"top\";i:2;s:6:\"bottom\";i:0;s:4:\"left\";i:0;s:5:\"right\";i:0;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-menu2-submenu-b-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:57:\"astra-settings[header-menu2-submenu-border-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[header-menu2-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-menu2-menu-stack-on-mobile]\";a:4:{s:7:\"default\";b:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-hb-menu-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:40:\"astra-settings[header-menu2-text-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-menu2-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-menu2-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-menu2-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-menu2-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-2-font-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-menu2-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:40:\"astra-settings[header-menu2-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:38:\"astra-settings[header-menu2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-menu2-font-extras]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-2-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-menu2-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:38:\"section-header-search-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-search-icon-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-search-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:27:\"astra-settings[live-search]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[live-search-post-types]\";a:4:{s:7:\"default\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[live-search-result-count]\";a:4:{s:7:\"default\";i:5;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-header-search-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[section-header-search-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:59:\"astra-settings[section-header-search-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:35:\"astra-settings[header-account-tabs]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[header-account-login-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:7:\"default\";s:10:\"My Account\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:0:\"\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:45:\"astra-settings[header-account-logout-heading]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:7:\"default\";s:4:\"icon\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:7:\"default\";s:7:\"default\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:7:\"default\";s:6:\"Log In\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-account-logout-link]\";a:4:{s:7:\"default\";a:3:{s:3:\"url\";s:36:\"https://mrarif.me/oasis/wp-login.php\";s:7:\"new_tab\";b:0;s:8:\"link_rel\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:13:\"sanitize_link\";}}s:42:\"astra-settings[header-account-image-width]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:2:\"40\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-account-icon-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";i:18;s:6:\"mobile\";i:18;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[header-account-icon-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-2)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:50:\"astra-settings[header-account-text-design-options]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-account-type-text-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-account-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-account-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:48:\"astra-settings[font-size-section-header-account]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[section-header-account-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-hb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-hb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-hb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[header-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[header-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[header-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[header-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[header-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[header-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[header-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[header-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[header-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[header-social-1-radius-fields]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-hb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-hb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:43:\"section-header-mobile-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-border]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-divider-colors-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-submenu-item-b-size]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-submenu-item-b-color]\";a:4:{s:7:\"default\";s:7:\"#eaeaea\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:46:\"astra-settings[header-mobile-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[header-mobile-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-3)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-3)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[header-mobile-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:25:\"var(--ast-global-color-4)\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:53:\"astra-settings[header-mobile-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:25:\"var(--ast-global-color-1)\";s:6:\"tablet\";s:25:\"var(--ast-global-color-1)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:56:\"astra-settings[header-mobile-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:25:\"var(--ast-global-color-5)\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[header-mobile-menu-header-typo-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[header-mobile-menu-header-menu-typography]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[header-mobile-menu-font-family]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";s:19:\"sanitize_text_field\";}s:46:\"astra-settings[header-mobile-menu-font-weight]\";a:4:{s:7:\"default\";s:7:\"inherit\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_font_weight\";}}s:44:\"astra-settings[header-mobile-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[font-extras-header-mobile-menu]\";a:4:{s:7:\"default\";a:6:{s:11:\"line-height\";s:0:\"\";s:16:\"line-height-unit\";s:2:\"em\";s:14:\"letter-spacing\";s:0:\"\";s:19:\"letter-spacing-unit\";s:2:\"px\";s:14:\"text-transform\";s:0:\"\";s:15:\"text-decoration\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[header-mobile-menu-menu-spacing-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[header-mobile-menu-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:49:\"astra-settings[section-header-mobile-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:64:\"astra-settings[section-header-mobile-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-above-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:7:\"default\";s:1:\"2\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"2-equal\";s:6:\"tablet\";s:7:\"2-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hba-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hba-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hba-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hba-footer-separator]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hba-footer-top-border-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hba-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#eeeeee\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hba-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-above-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-above-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-above-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"section-below-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:7:\"default\";s:1:\"1\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"full\";s:6:\"tablet\";s:4:\"full\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[hbb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-footer-height]\";a:4:{s:7:\"default\";i:60;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[hbb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:6:\"center\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:25:\"astra-settings[hbb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[hbb-footer-separator]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[hbb-footer-top-border-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:44:\"astra-settings[hbb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:26:\"var(--ast-global-color-4 )\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:33:\"astra-settings[hbb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:52:\"astra-settings[section-below-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:51:\"astra-settings[section-below-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:66:\"astra-settings[section-below-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:41:\"section-footer-copyright-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:7:\"default\";s:77:\"Copyright [copyright] [current_year] [site_title] | Powered by [theme_author]\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-copyright-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[footer-copyright-color]\";a:4:{s:7:\"default\";s:25:\"var(--ast-global-color-3)\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:55:\"astra-settings[section-footer-copyright-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"astra-settings[section-footer-copyright-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:50:\"astra-settings[font-size-section-footer-copyright]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";i:16;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:62:\"astra-settings[section-footer-copyright-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:36:\"section-footer-menu-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-create-menu-link]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:10:\"horizontal\";s:6:\"tablet\";s:8:\"vertical\";s:6:\"mobile\";s:8:\"vertical\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-menu-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-menu-link-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-background-colors]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-menu-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-menu-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-h-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-h-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:46:\"astra-settings[footer-menu-a-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-menu-a-bg-color-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-main-menu-spacing]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:1:\"0\";s:5:\"right\";s:2:\"20\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:2:\"20\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:42:\"astra-settings[section-footer-menu-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:37:\"astra-settings[footer-menu-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:57:\"astra-settings[section-footer-menu-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:63:\"astra-settings[section-fb-social-icons-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:51:\"astra-settings[font-size-section-fb-social-icons-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"section-fb-social-icons-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-color-type]\";a:4:{s:7:\"default\";s:6:\"custom\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-brand-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-brand-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:50:\"astra-settings[footer-social-1-brand-hover-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-social-1-icon-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-social-1-label-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[footer-social-1-background-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-social-1-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-social-1-label-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-label-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-social-1-bg-h-color]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:7:\"default\";a:1:{s:5:\"items\";a:3:{i:0;a:8:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#557dbc\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:8:\"facebook\";s:5:\"label\";s:8:\"Facebook\";}i:1;a:8:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#7acdee\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:7:\"twitter\";s:5:\"label\";s:7:\"Twitter\";}i:2;a:8:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;s:6:\"source\";s:4:\"icon\";s:3:\"url\";s:0:\"\";s:5:\"color\";s:7:\"#8a3ab9\";s:10:\"background\";s:11:\"transparent\";s:4:\"icon\";s:9:\"instagram\";s:5:\"label\";s:9:\"Instagram\";}}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:21:\"sanitize_social_icons\";}}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:7:\"default\";b:0;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-social-1-space]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-social-1-bg-space]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:36:\"astra-settings[footer-social-1-size]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:18;s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:45:\"astra-settings[footer-social-1-radius-fields]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:56:\"astra-settings[section-fb-social-icons-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-social-icons-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-social-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:47:\"section-primary-footer-builder-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:7:\"default\";s:1:\"3\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-footer-layout]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:7:\"3-equal\";s:6:\"tablet\";s:7:\"3-equal\";s:6:\"mobile\";s:4:\"full\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:38:\"astra-settings[hb-footer-layout-width]\";a:4:{s:7:\"default\";s:7:\"content\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-primary-footer-height]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[hb-footer-vertical-alignment]\";a:4:{s:7:\"default\";s:10:\"flex-start\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:24:\"astra-settings[hb-stack]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:5:\"stack\";s:6:\"tablet\";s:5:\"stack\";s:6:\"mobile\";s:5:\"stack\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[hb-footer-main-sep]\";a:4:{s:7:\"default\";i:1;s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[hb-footer-main-sep-color]\";a:4:{s:7:\"default\";s:65:\"var( --ast-global-color-subtle-background, --ast-global-color-7 )\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:20:\"sanitize_alpha_color\";}}s:43:\"astra-settings[hb-footer-bg-obj-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";a:10:{s:16:\"background-color\";s:7:\"#f9f9f9\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"tablet\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}s:6:\"mobile\";a:10:{s:16:\"background-color\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:17:\"background-repeat\";s:6:\"repeat\";s:19:\"background-position\";s:13:\"center center\";s:15:\"background-size\";s:4:\"auto\";s:21:\"background-attachment\";s:6:\"scroll\";s:12:\"overlay-type\";s:0:\"\";s:13:\"overlay-color\";s:0:\"\";s:15:\"overlay-opacity\";s:0:\"\";s:16:\"overlay-gradient\";s:0:\"\";}}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:32:\"astra-settings[hb-inner-spacing]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:54:\"astra-settings[section-primary-footer-builder-padding]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:53:\"astra-settings[section-primary-footer-builder-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:68:\"astra-settings[section-primary-footer-builder-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-1]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-1-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-1color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-1-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-1link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-1link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-1-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-1-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-1-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:55:\"astra-settings[section-fb-html-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[font-size-section-fb-html-2]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"section-fb-html-2-ast-context-tabs\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:7:\"default\";s:22:\"Insert HTML text here.\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:34:\"astra-settings[footer-html-2color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[footer-html-2-link-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:39:\"astra-settings[footer-html-2link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-html-2link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[section-fb-html-2-margin-divider]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:40:\"astra-settings[section-fb-html-2-margin]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"tablet\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:6:\"mobile\";a:4:{s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";}s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:39:\"astra-settings[footer-html-2-alignment]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-1-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-1]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-1-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-1-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-1-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-1-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-1-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-1-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-1-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-1-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-2-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-2]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-2-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-2-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-2-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-2-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-2-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-2-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-2-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-2-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-3-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-3]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-3-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-3-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-3-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-3-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-3-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-3-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-3-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-3-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}s:60:\"astra-settings[astra-sidebar-widgets-footer-widget-4-margin]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";a:2:{i:0;s:26:\"Astra_Customizer_Sanitizes\";i:1;s:27:\"sanitize_responsive_spacing\";}}s:41:\"astra-settings[footer-widget-alignment-4]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:4:\"left\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:43:\"astra-settings[footer-widget-4-title-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:37:\"astra-settings[footer-widget-4-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:48:\"astra-settings[footer-widget-4-link-color-group]\";a:4:{s:7:\"default\";s:0:\"\";s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:42:\"astra-settings[footer-widget-4-link-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:44:\"astra-settings[footer-widget-4-link-h-color]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:41:\"astra-settings[footer-widget-4-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:49:\"astra-settings[footer-widget-4-content-font-size]\";a:4:{s:7:\"default\";a:6:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:12:\"desktop-unit\";s:2:\"px\";s:11:\"tablet-unit\";s:2:\"px\";s:11:\"mobile-unit\";s:2:\"px\";}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:11:\"postMessage\";s:17:\"sanitize_callback\";b:0;}s:75:\"astra-settings[astra-sidebar-widgets-footer-widget-4-visibility-responsive]\";a:4:{s:7:\"default\";a:3:{s:7:\"desktop\";i:1;s:6:\"tablet\";i:1;s:6:\"mobile\";i:1;}s:4:\"type\";s:6:\"option\";s:9:\"transport\";s:7:\"refresh\";s:17:\"sanitize_callback\";b:0;}}s:8:\"partials\";a:37:{s:41:\"astra-settings[header-mobile-popup-items]\";a:4:{s:8:\"selector\";s:25:\"#ast-mobile-popup-wrapper\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Header\":0:{}i:1;s:12:\"mobile_popup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:38:\"astra-settings[ast-header-retina-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[different-mobile-logo]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[use-logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[logo-svg-icon]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:49:\"Astra_Builder_UI_Controller::render_site_identity\";s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[logo-title-inline]\";a:4:{s:8:\"selector\";s:14:\".site-branding\";s:15:\"render_callback\";s:35:\"Astra_Builder_Header::site_identity\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[related-posts-title]\";a:4:{s:8:\"selector\";s:57:\".ast-related-posts-title-section .ast-related-posts-title\";s:15:\"render_callback\";a:2:{i:0;s:26:\"Astra_Related_Posts_Loader\";i:1;s:26:\"render_related_posts_title\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[transparent-header-logo]\";a:4:{s:8:\"selector\";s:64:\".ast-replace-site-logo-transparent .site-branding .site-logo-img\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[breadcrumb-position]\";a:4:{s:8:\"selector\";s:54:\".ast-breadcrumbs-wrapper .ast-breadcrumbs .trail-items\";s:15:\"render_callback\";s:0:\"\";s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:36:\"astra-settings[footer-desktop-items]\";a:4:{s:8:\"selector\";s:12:\".site-footer\";s:15:\"render_callback\";a:2:{i:0;O:20:\"Astra_Builder_Footer\":0:{}i:1;s:13:\"footer_markup\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-trigger-icon]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[mobile-header-toggle-btn-style]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:40:\"astra-settings[mobile-header-menu-label]\";a:4:{s:8:\"selector\";s:16:\".ast-button-wrap\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:21:\"render_mobile_trigger\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:35:\"astra-settings[header-button1-text]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-button1-link-option]\";a:4:{s:8:\"selector\";s:20:\".ast-header-button-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:8:\"button_1\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[header-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[header-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-header-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:13:\"header_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:42:\"astra-settings[header-account-login-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:67:\"astra-settings[header-account-login-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logged-in-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:41:\"astra-settings[header-account-login-link]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:43:\"astra-settings[header-account-logout-style]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:68:\"astra-settings[header-account-logout-style-extend-text-profile-type]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:45:\"astra-settings[header-account-logout-preview]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:46:\"astra-settings[header-account-logged-out-text]\";a:4:{s:8:\"selector\";s:19:\".ast-header-account\";s:15:\"render_callback\";a:2:{i:0;s:27:\"Astra_Builder_UI_Controller\";i:1;s:14:\"render_account\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[header-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[header-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-header-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9173;i:1;s:15:\"header_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:33:\"astra-settings[hba-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-above-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"above_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:33:\"astra-settings[hbb-footer-column]\";a:4:{s:8:\"selector\";s:23:\".site-below-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:12:\"below_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:39:\"astra-settings[footer-copyright-editor]\";a:4:{s:8:\"selector\";s:21:\".ast-footer-copyright\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:16:\"footer_copyright\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:34:\"astra-settings[footer-menu-layout]\";a:4:{s:8:\"selector\";s:59:\".footer-widget-area[data-section=\"section-footer-menu\"] nav\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:11:\"footer_menu\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:1;}s:37:\"astra-settings[footer-social-icons-1]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:44:\"astra-settings[footer-social-1-label-toggle]\";a:4:{s:8:\"selector\";s:25:\".ast-footer-social-1-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:15:\"footer_social_1\";}s:18:\"containerInclusive\";b:1;s:15:\"fallbackRefresh\";b:0;}s:32:\"astra-settings[hb-footer-column]\";a:4:{s:8:\"selector\";s:25:\".site-primary-footer-wrap\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:14:\"primary_footer\";}s:18:\"containerInclusive\";b:0;s:15:\"fallbackRefresh\";b:1;}s:29:\"astra-settings[footer-html-1]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-1\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_1\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}s:29:\"astra-settings[footer-html-2]\";a:4:{s:8:\"selector\";s:18:\".ast-footer-html-2\";s:15:\"render_callback\";a:2:{i:0;r:9227;i:1;s:13:\"footer_html_2\";}s:18:\"containerInclusive\";s:0:\"\";s:15:\"fallbackRefresh\";b:0;}}}', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(258, 'litespeed.conf.hash', 'PilZK5Qp6CSmSZw7cg3Na64M1FHATwg9', 'auto'),
(259, 'litespeed.conf.api_key', '', 'auto'),
(260, 'litespeed.conf.auto_upgrade', '', 'auto'),
(257, 'litespeed.conf._version', '7.7', 'auto'),
(261, 'litespeed.conf.server_ip', '', 'auto'),
(262, 'litespeed.conf.guest', '', 'auto'),
(263, 'litespeed.conf.guest_optm', '', 'auto'),
(264, 'litespeed.conf.news', '1', 'auto'),
(265, 'litespeed.conf.cache', '1', 'auto'),
(266, 'litespeed.conf.cache-priv', '1', 'auto'),
(267, 'litespeed.conf.cache-commenter', '1', 'auto'),
(268, 'litespeed.conf.cache-rest', '1', 'auto'),
(269, 'litespeed.conf.cache-page_login', '1', 'auto'),
(270, 'litespeed.conf.cache-mobile', '', 'auto'),
(271, 'litespeed.conf.cache-mobile_rules', '[\"Mobile\",\"Android\",\"Silk\\/\",\"Kindle\",\"BlackBerry\",\"Opera Mini\",\"Opera Mobi\"]', 'auto'),
(272, 'litespeed.conf.cache-browser', '', 'auto'),
(273, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(274, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(275, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(276, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(277, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(278, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(279, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(280, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(281, 'litespeed.conf.cache-exc', '[]', 'auto'),
(282, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(283, 'litespeed.conf.cache-drop_qs', '[\"fbclid\",\"gclid\",\"utm*\",\"_ga\"]', 'auto'),
(284, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(285, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(286, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(287, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(288, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(289, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(290, 'litespeed.conf.cache-ttl_status', '[\"404 3600\",\"500 600\"]', 'auto'),
(291, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(292, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(293, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(294, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(295, 'litespeed.conf.purge-upgrade', '', 'auto'),
(296, 'litespeed.conf.purge-stale', '', 'auto'),
(297, 'litespeed.conf.purge-post_all', '', 'auto'),
(298, 'litespeed.conf.purge-post_f', '1', 'auto'),
(299, 'litespeed.conf.purge-post_h', '1', 'auto'),
(300, 'litespeed.conf.purge-post_p', '1', 'auto'),
(301, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(302, 'litespeed.conf.purge-post_a', '1', 'auto'),
(303, 'litespeed.conf.purge-post_y', '', 'auto'),
(304, 'litespeed.conf.purge-post_m', '1', 'auto'),
(305, 'litespeed.conf.purge-post_d', '', 'auto'),
(306, 'litespeed.conf.purge-post_t', '1', 'auto'),
(307, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(308, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(309, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(310, 'litespeed.conf.purge-hook_all', '[\"switch_theme\",\"wp_create_nav_menu\",\"wp_update_nav_menu\",\"wp_delete_nav_menu\",\"create_term\",\"edit_terms\",\"delete_term\",\"add_link\",\"edit_link\",\"delete_link\"]', 'auto'),
(311, 'litespeed.conf.esi', '', 'auto'),
(312, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(313, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(314, 'litespeed.conf.esi-nonce', '[\"stats_nonce\",\"subscribe_nonce\"]', 'auto'),
(315, 'litespeed.conf.util-instant_click', '', 'auto'),
(316, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(317, 'litespeed.conf.debug-disable_all', '', 'auto'),
(318, 'litespeed.conf.debug', '0', 'auto'),
(319, 'litespeed.conf.debug-ips', '[\"127.0.0.1\"]', 'auto'),
(320, 'litespeed.conf.debug-level', '', 'auto'),
(321, 'litespeed.conf.debug-filesize', '3', 'auto'),
(322, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(323, 'litespeed.conf.debug-inc', '[]', 'auto'),
(324, 'litespeed.conf.debug-exc', '[]', 'auto'),
(325, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(326, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(327, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(328, 'litespeed.conf.optm-css_min', '', 'auto'),
(329, 'litespeed.conf.optm-css_comb', '', 'auto'),
(330, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'auto'),
(331, 'litespeed.conf.optm-ucss', '', 'auto'),
(332, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(333, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(334, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(335, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(336, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(337, 'litespeed.conf.optm-js_min', '', 'auto'),
(338, 'litespeed.conf.optm-js_comb', '', 'auto'),
(339, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'auto'),
(340, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(341, 'litespeed.conf.optm-js_exc', '[\"jquery.js\",\"jquery.min.js\"]', 'auto'),
(342, 'litespeed.conf.optm-html_min', '', 'auto'),
(343, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(344, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(345, 'litespeed.conf.optm-qs_rm', '', 'auto'),
(346, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(347, 'litespeed.conf.optm-css_async', '', 'auto'),
(348, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(349, 'litespeed.conf.optm-ccss_sep_posttype', '[\"page\"]', 'auto'),
(350, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(351, 'litespeed.conf.optm-ccss_whitelist', '[]', 'auto'),
(352, 'litespeed.conf.optm-css_async_inline', '1', 'auto'),
(353, 'litespeed.conf.optm-css_font_display', '', 'auto'),
(354, 'litespeed.conf.optm-js_defer', '0', 'auto'),
(355, 'litespeed.conf.optm-emoji_rm', '', 'auto'),
(356, 'litespeed.conf.optm-noscript_rm', '', 'auto'),
(357, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(358, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(359, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(360, 'litespeed.conf.optm-js_defer_exc', '[\"jquery.js\",\"jquery.min.js\",\"gtm.js\",\"analytics.js\"]', 'auto'),
(361, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(362, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(363, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'auto'),
(364, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(365, 'litespeed.conf.optm-exc', '[]', 'auto'),
(366, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(367, 'litespeed.conf.object', '', 'auto'),
(368, 'litespeed.conf.object-kind', '', 'auto'),
(369, 'litespeed.conf.object-host', 'localhost', 'auto'),
(370, 'litespeed.conf.object-port', '11211', 'auto'),
(371, 'litespeed.conf.object-life', '360', 'auto'),
(372, 'litespeed.conf.object-persistent', '1', 'auto'),
(373, 'litespeed.conf.object-admin', '1', 'auto'),
(374, 'litespeed.conf.object-transients', '1', 'auto'),
(375, 'litespeed.conf.object-db_id', '0', 'auto'),
(376, 'litespeed.conf.object-user', '', 'auto'),
(377, 'litespeed.conf.object-pswd', '', 'auto'),
(378, 'litespeed.conf.object-global_groups', '[\"users\",\"userlogins\",\"useremail\",\"userslugs\",\"usermeta\",\"user_meta\",\"site-transient\",\"site-options\",\"site-lookup\",\"site-details\",\"blog-lookup\",\"blog-details\",\"blog-id-cache\",\"rss\",\"global-posts\",\"global-cache-test\"]', 'auto'),
(379, 'litespeed.conf.object-non_persistent_groups', '[\"comment\",\"counts\",\"plugins\",\"wc_session_id\"]', 'auto'),
(380, 'litespeed.conf.discuss-avatar_cache', '', 'auto'),
(381, 'litespeed.conf.discuss-avatar_cron', '', 'auto'),
(382, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(383, 'litespeed.conf.optm-localize', '', 'auto'),
(384, 'litespeed.conf.optm-localize_domains', '[\"### Popular scripts ###\",\"https:\\/\\/platform.twitter.com\\/widgets.js\",\"https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js\"]', 'auto'),
(385, 'litespeed.conf.media-lazy', '', 'auto'),
(386, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(387, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(388, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(389, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"{width}\" height=\"{height}\" viewBox=\"0 0 {width} {height}\"><rect width=\"100%\" height=\"100%\" style=\"fill:{color};fill-opacity: 0.1;\"/></svg>', 'auto'),
(390, 'litespeed.conf.media-lqip', '', 'auto'),
(391, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(392, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(393, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(394, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(395, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(396, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(397, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(398, 'litespeed.conf.media-lazy_cls_exc', '[\"wmu-preview-img\"]', 'auto'),
(399, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(400, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(401, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(402, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(403, 'litespeed.conf.media-lqip_exc', '[]', 'auto'),
(404, 'litespeed.conf.media-vpi', '', 'auto'),
(405, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(406, 'litespeed.conf.media-auto_rescale_ori', '', 'auto'),
(407, 'litespeed.conf.img_optm-auto', '', 'auto'),
(408, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(409, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(410, 'litespeed.conf.img_optm-webp', '0', 'auto'),
(411, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(412, 'litespeed.conf.img_optm-sizes_skipped', '[]', 'auto'),
(413, 'litespeed.conf.img_optm-exif', '1', 'auto'),
(414, 'litespeed.conf.img_optm-webp_attr', '[\"img.src\",\"div.data-thumb\",\"img.data-src\",\"img.data-lazyload\",\"div.data-large_image\",\"img.retina_logo_url\",\"div.data-parallax-image\",\"div.data-vc-parallax-image\",\"video.poster\"]', 'auto'),
(415, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'auto'),
(416, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(417, 'litespeed.conf.crawler', '', 'auto'),
(418, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(419, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(420, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(421, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(422, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(423, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(424, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(425, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(426, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(427, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(428, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(429, 'litespeed.conf.cdn', '', 'auto'),
(430, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(431, 'litespeed.conf.cdn-ori_dir', '[\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\",\"wp-includes\"]', 'auto'),
(432, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(433, 'litespeed.conf.cdn-quic', '', 'auto'),
(434, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(435, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(436, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(437, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(438, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(439, 'litespeed.conf.cdn-cloudflare_clear', '', 'auto'),
(440, 'litespeed.conf.cdn-mapping', '[{\"url\":\"\",\"inc_img\":\"1\",\"inc_css\":\"1\",\"inc_js\":\"1\",\"filetype\":[\".aac\",\".css\",\".eot\",\".gif\",\".jpeg\",\".jpg\",\".js\",\".less\",\".mp3\",\".mp4\",\".ogg\",\".otf\",\".pdf\",\".png\",\".svg\",\".ttf\",\".webp\",\".woff\",\".woff2\"]}]', 'auto'),
(441, 'litespeed.conf.cdn-attr', '[\".src\",\".data-src\",\".href\",\".poster\",\"source.srcset\"]', 'auto'),
(442, 'litespeed.conf.qc-nameservers', '', 'auto'),
(443, 'litespeed.conf.qc-cname', '', 'auto'),
(444, 'litespeed.conf.debug-disable_tmp', '0', 'auto'),
(445, 'litespeed.cloud._summary', '{\"curr_request.ver_check\":0,\"last_request.ver_check\":1770028235,\"news.utime\":1770028917,\"curr_request.news\":0,\"last_request.news\":1770028917}', 'auto'),
(446, 'litespeed.purge.queue', '-1', 'auto'),
(447, 'litespeed.purge.queue2', '-1', 'auto'),
(452, 'litespeed.gui.lscwp_whm_install', '-1', 'auto'),
(453, 'litespeed.gui.dismiss', '-1', 'auto'),
(454, 'litespeed.data.upgrading', '-1', 'auto'),
(455, 'litespeed.admin_display.messages', '[\"<div class=\\\"litespeed_icon notice notice-success is-dismissible\\\"><p>Purged all caches successfully.<\\/p><\\/div>\"]', 'auto'),
(456, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:76:\"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More\";s:7:\"excerpt\";s:250:\"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.\";s:7:\"created\";i:1759243152;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:138:\"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}', 'off'),
(2027, '_transient_is_multi_author', '0', 'on');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(2061, 'elementor_pro_remote_info_api_data_3.35.1', 'a:2:{s:7:\"timeout\";i:1771569144;s:5:\"value\";s:252079:\"{\"stable_version\":\"3.35.1\",\"last_updated\":\"2026-02-11 10:26:59\",\"sections\":\"a:2:{s:11:\\\"description\\\";s:161:\\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\\";s:9:\\\"changelog\\\";s:235958:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.35.1 - 2026-02-11<\\/h4>\\n<ul>\\n<li>Fix: Enqueue script errors when <code>WP_DEBUG<\\/code> is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/34617\\\">#34617<\\/a>)<\\/li>\\n<li>Fix: General UI issues in Editor screens in WordPress Admin<\\/li>\\n<\\/ul>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\\">#23543<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn\'t work in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\\">#24367<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn\'t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the \'Avoid Duplicates\' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\\">#11651<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\\">#16077<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\\">#16511<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\\">#17692<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\\">#17922<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\\">#19253<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\\">#19370<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\\">#21236<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\\">#21844<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\\">#17500<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\\">#18466<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\\">#21664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\\">#24929<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn\'t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\\">#29049<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\\">#28935<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\\">#2526<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\\">#3277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: \'Reading Settings\' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder\'s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the \'Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\\">#6703<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\\">#11333<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\\">#19277<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added \'Structure\' indication for widgets with Display Conditions applied (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to \'Copy\', \'Paste\', and \'Clear\' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the \'Create Template\' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the \'Loader\' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to \'Current Query\' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\\">#18689<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\\">#23331<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\\">#21404<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\\">#22202<\\/a>)<\\/li>\\n<li>Fix: \'Editing Mode\' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\\">#27664<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\\">#24931<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\\">#21879<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\\">#6225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\\">#21769<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove \'User IP\' and \'User Agent\' from the form submissions metadata (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\\">#24298<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\\">#24322<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn\'t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn\'t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\\">#18885<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\\">#19334<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\\">#4246<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\\">#21489<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\\">#22368<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\\">#2587<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\\">#11193<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can\'t edit page when using \'Content Tabs\' and \'Section\' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\\">#20207<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\\">#20235<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\\">#20258<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\\">#11562<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\\">#15828<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\\">#19540<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\\">#19618<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\\">#19777<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\\">#18895<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\\">#18598<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\\">#18633<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\\">#10607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\\">#18007<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\\">#14357<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\\">#13151<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\\">#6691<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\\">#11774<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\\">#5760<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\\">#17767<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn\'t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\\">#17412<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\\">#5437<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook\'s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\\">#15990<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\\">#15282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\\">#13218<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\\">#11014<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\\">#11475<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\\">#12299<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\\\"https:\\/\\/github.com\\/black-eye\\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\\">#12239<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\\">#11596<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\\">#5975<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\\">#11023<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\\">#10932<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\\">#10967<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\\">#11000<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can\'t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\\">#5716<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\\">#3642<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\\">#9225<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\\">#9927<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn\'t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn\'t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\\">#1898<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\\">#3103<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\\">#4279<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\\">#7947<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\\">#5993<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder\'s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder\'s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\\">#8672<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\\">#8213<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\\">#6039<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it\'s not from WooCommerce (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\\">#7711<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\\">#7306<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\\">#6871<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\\">#6876<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it\'s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won\'t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\\">#290<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\\">#4220<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\\">More Info<\\/a>) (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it\'s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it\'s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\\">#483<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\\">#653<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\\">Release Post<\\/a> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\\">#2761<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\\">#2623<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\\">#2109<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\\">#2061<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\\">#3196<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\\">#2041<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\\">#1482<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\\">#1693<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn\'t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\\">#1234<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\\">#1271<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can\'t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.35.1\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcxNTI1OTQzLCJleHAiOjE3NzE2MTIzNDN9.sT7Ic8JzLmd6cm_z7TL8lhvjndihFmuA_8QIlvYku1k\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzcxNTI1OTQzLCJleHAiOjE3NzE2MTIzNDN9.sT7Ic8JzLmd6cm_z7TL8lhvjndihFmuA_8QIlvYku1k\\/package_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.9.1\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJpYXQiOjE3NzE1MjU5NDMsImV4cCI6MTc3MTYxMjM0M30.RdXddLxD_5E1mjvLJZevnEzMyLH_fXY4qoaBI1fV1Cw\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiZXAtdWdMdTFycDNCQ25rY1VNRGRhVUIxNzAxMTA0NjUwRWdENFc3dWVmdDZpIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9tcmFyaWYubWUvb2FzaXMiLCJpYXQiOjE3NzE1MjU5NDMsImV4cCI6MTc3MTYxMjM0M30.RdXddLxD_5E1mjvLJZevnEzMyLH_fXY4qoaBI1fV1Cw\\/previous_download\",\"banners\":{\"2x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479\",\"1x\":\"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479\"},\"icons\":{\"svg\":\"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(459, 'litespeed.optimize.timestamp_purge_css', '1770028935', 'auto'),
(470, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}', 'off'),
(474, 'WPLANG', '', 'auto'),
(475, 'new_admin_email', 'arifwebsols@gmail.com', 'auto'),
(479, 'e_editor_counter', '155', 'auto'),
(502, 'elementor_pro_recaptcha_site_key', '', 'auto'),
(503, 'elementor_pro_recaptcha_secret_key', '', 'auto'),
(504, 'elementor_pro_recaptcha_v3_site_key', '', 'auto'),
(505, 'elementor_pro_recaptcha_v3_secret_key', '', 'auto'),
(506, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'auto'),
(507, 'elementor_pro_facebook_app_id', '', 'auto'),
(508, 'elementor_pro_mailchimp_api_key', '', 'auto'),
(509, 'elementor_validate_api_data', '', 'auto'),
(510, 'elementor_pro_activecampaign_api_key', '', 'auto'),
(511, 'elementor_pro_activecampaign_api_url', '', 'auto'),
(512, 'elementor_pro_convertkit_api_key', '', 'auto'),
(513, 'elementor_pro_drip_api_token', '', 'auto'),
(514, 'elementor_pro_getresponse_api_key', '', 'auto'),
(515, 'elementor_pro_mailerlite_api_key', '', 'auto'),
(516, 'elementor_typekit-kit-id', '', 'auto'),
(517, 'elementor_font_awesome_pro_kit_id', '', 'auto'),
(518, 'elementor_pro_stripe_test_secret_key', '', 'auto'),
(519, 'elementor_validate_stripe_api_test_secret_key_button', '', 'auto'),
(520, 'elementor_pro_stripe_live_secret_key', '', 'auto'),
(521, 'elementor_validate_stripe_api_live_secret_key_button', '', 'auto'),
(522, 'elementor_stripe_legal_disclaimer', '', 'auto'),
(523, 'elementor_editor_break_lines', '', 'auto'),
(524, 'elementor_unfiltered_files_upload', '1', 'auto'),
(525, 'elementor_google_font', '1', 'auto'),
(526, 'elementor_form-submissions', '', 'auto'),
(527, 'elementor_load_fa4_shim', '', 'auto'),
(528, 'elementor_meta_generator_tag', '', 'auto'),
(529, 'elementor_css_print_method', 'external', 'auto'),
(530, 'elementor_optimized_image_loading', '1', 'auto'),
(531, 'elementor_optimized_gutenberg_loading', '1', 'auto'),
(500, 'elementor_disable_typography_schemes', 'yes', 'auto'),
(501, 'elementor_google_maps_api_key', '', 'auto'),
(497, '_elementor_settings_update_time', '1770031687', 'auto'),
(482, '_transient_timeout__elementor_ab_test_plg_site_mailer_submission', '1777805435', 'off'),
(483, '_transient__elementor_ab_test_plg_site_mailer_submission', '1', 'off'),
(498, 'elementor_cpt_support', 'a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}', 'auto'),
(499, 'elementor_disable_color_schemes', 'yes', 'auto'),
(532, 'elementor_lazy_load_background_images', '1', 'auto'),
(533, 'elementor_local_google_fonts', '0', 'auto'),
(534, 'elementor_element_cache_ttl', '24', 'auto'),
(535, 'elementor_experiment-container', 'default', 'auto'),
(536, 'elementor_experiment-mega-menu', 'default', 'auto'),
(537, 'elementor_experiment-e_font_icon_svg', 'default', 'auto'),
(538, 'elementor_experiment-additional_custom_breakpoints', 'default', 'auto'),
(539, 'elementor_experiment-e_optimized_markup', 'default', 'auto'),
(540, 'elementor_experiment-theme_builder_v2', 'default', 'auto'),
(541, 'elementor_experiment-nested-elements', 'default', 'auto'),
(567, 'site_logo', '636', 'auto'),
(458, 'litespeed.gui._summary', '{\"new_version\":1770633717,\"score\":1771238517}', 'auto'),
(548, 'elementor_pro_theme_builder_conditions', 'a:4:{s:6:\"single\";a:1:{i:594;a:1:{i:0;s:21:\"include/singular/post\";}}s:7:\"archive\";a:1:{i:557;a:1:{i:0;s:28:\"include/archive/post_archive\";}}s:6:\"footer\";a:1:{i:301;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:291;a:1:{i:0;s:15:\"include/general\";}}}', 'auto'),
(973, 'category_children', 'a:0:{}', 'auto'),
(966, 'wp_calendar_block_has_published_posts', '1', 'auto'),
(575, 'elementor_library_category_children', 'a:0:{}', 'auto');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(574, 'elementor_remote_info_library', 'a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:30:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:10:\"ehp-footer\";i:9;s:10:\"ehp-header\";i:10;s:3:\"faq\";i:11;s:8:\"features\";i:12;s:6:\"footer\";i:13;s:7:\"Gallery\";i:14;s:6:\"header\";i:15;s:4:\"hero\";i:16;s:11:\"Link in Bio\";i:17;s:9:\"portfolio\";i:18;s:7:\"pricing\";i:19;s:15:\"product archive\";i:20;s:5:\"Quote\";i:21;s:15:\"Service Details\";i:22;s:8:\"services\";i:23;s:11:\"single page\";i:24;s:11:\"single post\";i:25;s:14:\"single product\";i:26;s:5:\"stats\";i:27;s:9:\"subscribe\";i:28;s:4:\"team\";i:29;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}', 'off');
INSERT INTO `wpo_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(547, '_elementor_element_cache_unique_id', '81268f9a0342b61453e51ca389144e8c', 'auto'),
(552, 'astra-color-palettes', 'a:5:{s:14:\"currentPalette\";s:9:\"palette_1\";s:8:\"palettes\";a:4:{s:9:\"palette_1\";a:9:{i:0;s:7:\"#108490\";i:1;s:7:\"#ef4922\";i:2;s:7:\"#000000\";i:3;s:7:\"#373737\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#f0f7f8\";i:6;s:7:\"#111111\";i:7;s:7:\"#D1D5DB\";i:8;s:7:\"#fec010\";}s:9:\"palette_2\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:9:\"palette_3\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:9:\"palette_4\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:7:\"presets\";a:11:{s:3:\"Oak\";a:9:{i:0;s:7:\"#0067FF\";i:1;s:7:\"#005EE9\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#364151\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#E7F6FF\";i:6;s:7:\"#070614\";i:7;s:7:\"#D1DAE5\";i:8;s:7:\"#222222\";}s:5:\"Viola\";a:9:{i:0;s:7:\"#6528F7\";i:1;s:7:\"#5511F8\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F2F0FE\";i:6;s:7:\"#0D0614\";i:7;s:7:\"#D8D8F5\";i:8;s:7:\"#222222\";}s:5:\"Cedar\";a:9:{i:0;s:7:\"#DD183B\";i:1;s:7:\"#CC1939\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#3A3A3A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FFEDE6\";i:6;s:7:\"#140609\";i:7;s:7:\"#FFD1BF\";i:8;s:7:\"#222222\";}s:6:\"Willow\";a:9:{i:0;s:7:\"#54B435\";i:1;s:7:\"#379237\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#2F3B40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDFBE2\";i:6;s:7:\"#0C1406\";i:7;s:7:\"#D5EAD8\";i:8;s:7:\"#222222\";}s:4:\"Lily\";a:9:{i:0;s:7:\"#DCA54A\";i:1;s:7:\"#D09A40\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#4A4A4A\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FAF5E5\";i:6;s:7:\"#141004\";i:7;s:7:\"#F0E6C5\";i:8;s:7:\"#222222\";}s:4:\"Rose\";a:9:{i:0;s:7:\"#FB5FAB\";i:1;s:7:\"#EA559D\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FCEEF5\";i:6;s:7:\"#140610\";i:7;s:7:\"#FAD8E9\";i:8;s:7:\"#222222\";}s:4:\"Sage\";a:9:{i:0;s:7:\"#1B9C85\";i:1;s:7:\"#178E79\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#EDF6EE\";i:6;s:7:\"#06140C\";i:7;s:7:\"#D4F3D7\";i:8;s:7:\"#222222\";}s:5:\"Flare\";a:9:{i:0;s:7:\"#FD9800\";i:1;s:7:\"#E98C00\";i:2;s:7:\"#0F172A\";i:3;s:7:\"#454F5E\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF9E1\";i:6;s:7:\"#141006\";i:7;s:7:\"#F9F0C8\";i:8;s:7:\"#222222\";}s:5:\"Maple\";a:9:{i:0;s:7:\"#FF6210\";i:1;s:7:\"#F15808\";i:2;s:7:\"#1C0D0A\";i:3;s:7:\"#353535\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#FEF1E4\";i:6;s:7:\"#140B06\";i:7;s:7:\"#E5D7D1\";i:8;s:7:\"#222222\";}s:5:\"Birch\";a:9:{i:0;s:7:\"#737880\";i:1;s:7:\"#65696F\";i:2;s:7:\"#151616\";i:3;s:7:\"#393C40\";i:4;s:7:\"#FFFFFF\";i:5;s:7:\"#F6F6F6\";i:6;s:7:\"#232529\";i:7;s:7:\"#F1F0F0\";i:8;s:7:\"#222222\";}s:4:\"Dark\";a:9:{i:0;s:7:\"#0085FF\";i:1;s:7:\"#0177E3\";i:2;s:7:\"#FFFFFF\";i:3;s:7:\"#E7F6FF\";i:4;s:7:\"#212A37\";i:5;s:7:\"#0F172A\";i:6;s:7:\"#4F5B62\";i:7;s:7:\"#070614\";i:8;s:7:\"#222222\";}}s:11:\"presetNames\";a:4:{s:9:\"palette_1\";N;s:9:\"palette_2\";s:3:\"Oak\";s:9:\"palette_3\";s:5:\"Viola\";s:9:\"palette_4\";s:4:\"Dark\";}s:4:\"flag\";b:0;}', 'on'),
(586, '_elementor_ab_testing_data', 'a:2:{s:7:\"timeout\";i:1771064820;s:5:\"value\";s:273:\"[{\"coreOnboarding\":{\"emphasizeConnectBenefits101\":true,\"embedConnectInOnboarding102\":false,\"onboardingStartsWithLogin103\":false,\"offerThemeChoicesHelloBiz201\":false,\"emphasizeThemeValueAudience202\":false,\"updateCopyVisuals401\":false,\"reduceHierarchyBlankOption402\":false}}]\";}', 'off'),
(2071, '_new_bb_banner', 'a:3:{s:9:\"dismissed\";b:0;s:12:\"dismissed_at\";i:0;s:11:\"using_since\";i:1771525948;}', 'auto'),
(2072, 'bmi_gdrive_banner_dismissed', '1', 'auto'),
(2073, 'bmi_sk_keepalive', 'EciCBiI4bgZHVUxCbfzKaddLs6zPquSV', 'auto'),
(2074, 'bmi_cron_new_domain_done', '1', 'auto'),
(2075, 'BMI::STORAGE::LOCAL::PATH', '/home/mrarqpph/public_html/oasis/wp-content/backup-migration-hSgMsjz8Z9', 'auto'),
(2077, '_transient_bmi_latest_size_plugins', '106443686', 'on'),
(2078, '_transient_bmi_latest_size_uploads', '9934169', 'on'),
(2079, '_transient_bmi_latest_size_themes', '33093112', 'on'),
(2081, '_transient_bmi_latest_size_wordpress', '61671193', 'on'),
(2082, '_transient_bmi_latest_size_database', '41195822', 'on'),
(2083, 'bmi_required_space', '209259498', 'auto'),
(2095, 'elementor-custom-breakpoints-files', 'a:31:{s:23:\"custom-apple-webkit.min\";a:1:{s:4:\"time\";i:1771527944;}s:19:\"custom-lightbox.min\";a:1:{s:4:\"time\";i:1771527944;}s:19:\"custom-frontend.min\";a:1:{s:4:\"time\";i:1771527944;}s:27:\"custom-widget-accordion.min\";a:1:{s:4:\"time\";i:1771527944;}s:23:\"custom-widget-alert.min\";a:1:{s:4:\"time\";i:1771527944;}s:26:\"custom-widget-icon-box.min\";a:1:{s:4:\"time\";i:1771527944;}s:27:\"custom-widget-icon-list.min\";a:1:{s:4:\"time\";i:1771527944;}s:27:\"custom-widget-image-box.min\";a:1:{s:4:\"time\";i:1771527944;}s:31:\"custom-widget-image-gallery.min\";a:1:{s:4:\"time\";i:1771527944;}s:26:\"custom-widget-progress.min\";a:1:{s:4:\"time\";i:1771527944;}s:29:\"custom-widget-star-rating.min\";a:1:{s:4:\"time\";i:1771527944;}s:22:\"custom-widget-tabs.min\";a:1:{s:4:\"time\";i:1771527944;}s:24:\"custom-widget-toggle.min\";a:1:{s:4:\"time\";i:1771527944;}s:29:\"custom-widget-nested-tabs.min\";a:1:{s:4:\"time\";i:1771527944;}s:29:\"custom-widget-link-in-bio.min\";a:1:{s:4:\"time\";i:1771527944;}s:34:\"custom-widget-link-in-bio-base.min\";a:1:{s:4:\"time\";i:1771527944;}s:34:\"custom-widget-floating-buttons.min\";a:1:{s:4:\"time\";i:1771527944;}s:36:\"custom-widget-floating-bars-base.min\";a:1:{s:4:\"time\";i:1771527944;}s:37:\"custom-widget-floating-bars-var-3.min\";a:1:{s:4:\"time\";i:1771527944;}s:38:\"custom-widget-contact-buttons-base.min\";a:1:{s:4:\"time\";i:1771527944;}s:39:\"custom-widget-contact-buttons-var-7.min\";a:1:{s:4:\"time\";i:1771527944;}s:39:\"custom-widget-contact-buttons-var-9.min\";a:1:{s:4:\"time\";i:1771527944;}s:40:\"custom-widget-contact-buttons-var-10.min\";a:1:{s:4:\"time\";i:1771527944;}s:31:\"custom-pro-widget-loop-grid.min\";a:1:{s:4:\"time\";i:1771527944;}s:28:\"custom-pro-widget-slides.min\";a:1:{s:4:\"time\";i:1771527944;}s:30:\"custom-pro-widget-nav-menu.min\";a:1:{s:4:\"time\";i:1771527944;}s:30:\"custom-pro-widget-flip-box.min\";a:1:{s:4:\"time\";i:1771527944;}s:36:\"custom-pro-widget-call-to-action.min\";a:1:{s:4:\"time\";i:1771527944;}s:42:\"custom-pro-widget-testimonial-carousel.min\";a:1:{s:4:\"time\";i:1771527944;}s:36:\"custom-pro-widget-video-playlist.min\";a:1:{s:4:\"time\";i:1771527944;}s:31:\"custom-pro-widget-mega-menu.min\";a:1:{s:4:\"time\";i:1771527944;}}', 'auto'),
(2096, 'elementor_atomic_cache_validity__component-styles-related-posts', 'a:2:{s:5:\"state\";b:0;s:8:\"children\";a:9:{i:291;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:301;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:12;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:594;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:566;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:563;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:560;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:569;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}i:356;a:2:{s:5:\"state\";b:1;s:4:\"meta\";a:0:{}}}}', 'off'),
(2097, '_elementor_assets_data', 'a:1:{s:3:\"svg\";a:1:{s:9:\"font-icon\";a:12:{s:18:\"fas-map-marker-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:384;s:6:\"height\";i:512;s:4:\"path\";s:244:\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\";s:3:\"key\";s:18:\"fas-map-marker-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fas-phone-alt\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:264:\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\";s:3:\"key\";s:13:\"fas-phone-alt\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"far-envelope\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:494:\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\";s:3:\"key\";s:12:\"far-envelope\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-caret-down\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:119:\"M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\";s:3:\"key\";s:14:\"fas-caret-down\";}s:7:\"version\";s:6:\"5.15.3\";}s:22:\"fas-angle-double-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:378:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\";s:3:\"key\";s:22:\"fas-angle-double-right\";}s:7:\"version\";s:6:\"5.15.3\";}s:7:\"fas-fax\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:659:\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\";s:3:\"key\";s:7:\"fas-fax\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fab-facebook-f\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:320;s:6:\"height\";i:512;s:4:\"path\";s:172:\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\";s:3:\"key\";s:14:\"fab-facebook-f\";}s:7:\"version\";s:6:\"5.15.3\";}s:13:\"fab-x-twitter\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"path\";s:156:\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\";s:3:\"key\";s:13:\"fab-x-twitter\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fab-linkedin-in\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:300:\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\";s:3:\"key\";s:15:\"fab-linkedin-in\";}s:7:\"version\";s:6:\"5.15.3\";}s:12:\"fas-calendar\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:312:\"M12 192h424c6.6 0 12 5.4 12 12v260c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V204c0-6.6 5.4-12 12-12zm436-44v-36c0-26.5-21.5-48-48-48h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v36c0 6.6 5.4 12 12 12h424c6.6 0 12-5.4 12-12z\";s:3:\"key\";s:12:\"fas-calendar\";}s:7:\"version\";s:6:\"5.15.3\";}s:14:\"fas-angle-left\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:256;s:6:\"height\";i:512;s:4:\"path\";s:188:\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\";s:3:\"key\";s:14:\"fas-angle-left\";}s:7:\"version\";s:6:\"5.15.3\";}s:15:\"fas-angle-right\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:256;s:6:\"height\";i:512;s:4:\"path\";s:189:\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\";s:3:\"key\";s:15:\"fas-angle-right\";}s:7:\"version\";s:6:\"5.15.3\";}}}}', 'auto'),
(1943, 'elementor_controls_usage', 'a:6:{s:7:\"wp-page\";a:10:{s:7:\"heading\";a:2:{s:5:\"count\";i:52;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:52;s:11:\"header_size\";i:13;}}s:8:\"advanced\";a:5:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:51;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:3;s:7:\"_margin\";i:4;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;s:14:\"_border_radius\";i:3;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:5:\"align\";i:19;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:32;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:32;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:8:\"_padding\";i:3;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:7;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:141;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:8:{s:13:\"content_width\";i:100;s:14:\"flex_direction\";i:93;s:5:\"width\";i:68;s:20:\"flex_justify_content\";i:29;s:8:\"flex_gap\";i:25;s:11:\"boxed_width\";i:9;s:9:\"flex_wrap\";i:2;s:10:\"min_height\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:4:\"link\";i:2;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:141;}s:18:\"section_background\";a:7:{s:21:\"background_background\";i:31;s:16:\"background_color\";i:3;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:21:\"background_attachment\";i:1;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:26;s:26:\"box_shadow_box_shadow_type\";i:3;s:21:\"box_shadow_box_shadow\";i:3;s:13:\"border_border\";i:17;s:12:\"border_width\";i:17;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:141;}s:14:\"section_layout\";a:3:{s:7:\"padding\";i:67;s:11:\"css_classes\";i:18;s:6:\"margin\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:89;s:18:\"animation_duration\";i:41;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:3;s:12:\"hide_desktop\";i:3;s:17:\"hide_tablet_extra\";i:3;s:11:\"hide_tablet\";i:3;s:17:\"hide_mobile_extra\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:36;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:36;s:10:\"image_size\";i:36;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:19:\"image_border_radius\";i:36;s:32:\"image_box_shadow_box_shadow_type\";i:2;s:27:\"image_box_shadow_box_shadow\";i:2;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:36;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:19;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:19;s:4:\"view\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:19;s:10:\"icon_align\";i:5;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:2;s:24:\"icon_self_vertical_align\";i:16;s:20:\"icon_vertical_offset\";i:16;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:19;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:23;s:4:\"link\";i:23;s:13:\"selected_icon\";i:14;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:20;s:21:\"typography_typography\";i:14;s:20:\"typography_font_size\";i:14;s:16:\"background_color\";i:14;s:13:\"border_radius\";i:14;s:12:\"text_padding\";i:14;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:23;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:14;s:8:\"_padding\";i:14;s:16:\"_flex_align_self\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:3;s:11:\"form_fields\";i:3;s:10:\"input_size\";i:3;s:13:\"mark_required\";i:3;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:3;s:11:\"button_size\";i:3;}s:13:\"section_email\";a:6:{s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;s:15:\"email_from_name\";i:3;s:13:\"form_metadata\";i:3;s:8:\"email_to\";i:1;s:14:\"email_reply_to\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:3;s:17:\"email_from_name_2\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:3;s:13:\"label_spacing\";i:3;s:27:\"label_typography_typography\";i:3;s:26:\"label_typography_font_size\";i:3;s:7:\"row_gap\";i:3;s:12:\"html_spacing\";i:3;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:20:\"pp-info-box-carousel\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:7:{s:13:\"pp_info_boxes\";i:4;s:6:\"layout\";i:4;s:7:\"columns\";i:2;s:20:\"columns_mobile_extra\";i:4;s:14:\"title_html_tag\";i:3;s:18:\"sub_title_html_tag\";i:3;s:18:\"equal_height_boxes\";i:3;}}s:5:\"style\";a:3:{s:20:\"section_layout_style\";a:3:{s:5:\"align\";i:1;s:11:\"columns_gap\";i:1;s:8:\"rows_gap\";i:1;}s:22:\"section_info_box_style\";a:6:{s:30:\"info_box_background_background\";i:3;s:22:\"info_box_border_radius\";i:4;s:16:\"info_box_padding\";i:4;s:22:\"info_box_border_border\";i:3;s:21:\"info_box_border_width\";i:3;s:21:\"info_box_border_color\";i:1;}s:27:\"section_info_box_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:8:\"icon-box\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:16;s:10:\"title_text\";i:16;s:16:\"description_text\";i:16;s:10:\"title_size\";i:16;s:4:\"view\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:3:{s:10:\"text_align\";i:16;s:18:\"title_bottom_space\";i:16;s:26:\"content_vertical_alignment\";i:2;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:16;}}}}}s:11:\"single-post\";a:7:{s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:9:\"container\";a:12:{s:7:\"heading\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:5:\"color\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:13:\"content_width\";i:4;s:14:\"flex_direction\";i:4;s:11:\"boxed_width\";i:1;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:4;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:5;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:7:\"archive\";a:3:{s:8:\"pp-posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:18:\"section_skin_field\";a:3:{s:14:\"posts_per_page\";i:1;s:28:\"classic_columns_mobile_extra\";i:1;s:20:\"classic_equal_height\";i:1;}s:21:\"classic_section_image\";a:1:{s:22:\"classic_thumbnail_size\";i:1;}s:26:\"classic_section_post_title\";a:1:{s:22:\"classic_title_html_tag\";i:1;}s:28:\"classic_section_post_excerpt\";a:2:{s:20:\"classic_show_excerpt\";i:1;s:22:\"classic_excerpt_length\";i:1;}s:25:\"classic_section_post_meta\";a:1:{s:21:\"classic_show_comments\";i:1;}s:22:\"classic_section_button\";a:1:{s:19:\"classic_show_button\";i:1;}s:26:\"classic_section_pagination\";a:2:{s:23:\"classic_pagination_type\";i:1;s:29:\"classic_pagination_page_limit\";i:1;}}s:5:\"style\";a:4:{s:28:\"classic_section_layout_style\";a:2:{s:32:\"classic_posts_horizontal_spacing\";i:1;s:30:\"classic_posts_vertical_spacing\";i:1;}s:30:\"classic_section_post_box_style\";a:2:{s:30:\"classic_post_box_border_radius\";i:1;s:34:\"classic_post_box_shadow_box_shadow\";i:1;}s:34:\"classic_section_post_content_style\";a:1:{s:28:\"classic_post_content_padding\";i:1;}s:32:\"classic_section_pagination_style\";a:4:{s:29:\"classic_pagination_margin_top\";i:1;s:37:\"classic_pagination_link_border_radius\";i:1;s:31:\"classic_pagination_link_padding\";i:1;s:26:\"classic_pagination_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}s:6:\"footer\";a:9:{s:7:\"heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:4;s:10:\"link_click\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:4;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:8;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:2;s:14:\"flex_direction\";i:6;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:12;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:7;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:2:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:11:\"google_maps\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s:12:\"social-icons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}s:6:\"header\";a:7:{s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:3:{s:23:\"icon_align_mobile_extra\";i:2;s:17:\"icon_align_tablet\";i:2;s:10:\"icon_align\";i:1;}}}}s:9:\"container\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:20:\"flex_justify_content\";i:4;s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:16:\"flex_align_items\";i:1;s:8:\"flex_gap\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:3;s:7:\"z_index\";i:2;s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"pp-advanced-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:6:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;s:22:\"dropdown_divider_color\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:29:\"toggle_background_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:16:\"theme-page-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:28:\"pp_display_conditions_enable\";i:1;s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}}', 'off'),
(2159, '_site_transient_timeout_theme_roots', '1772096690', 'off'),
(2160, '_site_transient_theme_roots', 'a:3:{s:11:\"astra-child\";s:7:\"/themes\";s:5:\"astra\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";}', 'off'),
(2164, '_site_transient_timeout_php_check_478252eea4acfca65f7d24ee29253bbe', '1772699691', 'off'),
(2165, '_site_transient_php_check_478252eea4acfca65f7d24ee29253bbe', 'a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}', 'off'),
(2166, '_site_transient_timeout_wp_theme_files_patterns-4df3aaa30020c724cb10ad31350239d2', '1772096693', 'off'),
(2167, '_site_transient_wp_theme_files_patterns-4df3aaa30020c724cb10ad31350239d2', 'a:2:{s:7:\"version\";s:5:\"1.0.0\";s:8:\"patterns\";a:0:{}}', 'off'),
(2168, '_site_transient_timeout_wp_theme_files_patterns-760a87ff30585f820c847b3009604a2a', '1772096693', 'off'),
(2169, '_site_transient_wp_theme_files_patterns-760a87ff30585f820c847b3009604a2a', 'a:2:{s:7:\"version\";s:6:\"4.12.1\";s:8:\"patterns\";a:0:{}}', 'off'),
(796, '_site_transient_update_core', 'O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.9.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.9.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.9.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.9.1\";s:7:\"version\";s:5:\"6.9.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1772094889;s:15:\"version_checked\";s:5:\"6.9.1\";s:12:\"translations\";a:0:{}}', 'off'),
(793, '_transient_health-check-site-status-result', '{\"good\":21,\"recommended\":3,\"critical\":1}', 'on');

-- --------------------------------------------------------

--
-- Table structure for table `wpo_postmeta`
--

CREATE TABLE `wpo_postmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `post_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_postmeta`
--

INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(6, 7, '_elementor_template_type', 'kit'),
(5, 7, '_elementor_edit_mode', 'builder'),
(12, 12, '_edit_last', '1'),
(13, 12, '_edit_lock', '1771487129:1'),
(14, 12, '_wp_page_template', 'elementor_header_footer'),
(15, 12, 'site-sidebar-layout', 'no-sidebar'),
(20, 12, 'theme-transparent-header-meta', 'default'),
(17, 12, 'ast-site-content-layout', 'full-width-container'),
(18, 12, 'site-content-style', 'default'),
(19, 12, 'site-sidebar-style', 'default'),
(21, 12, 'astra-migrate-meta-layouts', 'set'),
(22, 14, '_edit_last', '1'),
(23, 14, '_edit_lock', '1771053265:1'),
(24, 14, '_wp_page_template', 'elementor_header_footer'),
(25, 14, 'site-sidebar-layout', 'no-sidebar'),
(30, 14, 'theme-transparent-header-meta', 'default'),
(27, 14, 'ast-site-content-layout', 'full-width-container'),
(28, 14, 'site-content-style', 'default'),
(29, 14, 'site-sidebar-style', 'default'),
(31, 14, 'astra-migrate-meta-layouts', 'set'),
(32, 16, '_edit_last', '1'),
(33, 16, '_wp_page_template', 'elementor_header_footer'),
(34, 16, 'site-sidebar-layout', 'no-sidebar'),
(39, 16, 'theme-transparent-header-meta', 'default'),
(36, 16, 'ast-site-content-layout', 'full-width-container'),
(37, 16, 'site-content-style', 'default'),
(38, 16, 'site-sidebar-style', 'default'),
(40, 16, 'astra-migrate-meta-layouts', 'set'),
(41, 16, '_edit_lock', '1771485525:1'),
(42, 18, '_edit_last', '2'),
(43, 18, '_wp_page_template', 'elementor_header_footer'),
(44, 18, 'site-sidebar-layout', 'no-sidebar'),
(49, 18, 'theme-transparent-header-meta', 'default'),
(46, 18, 'ast-site-content-layout', 'full-width-container'),
(47, 18, 'site-content-style', 'default'),
(48, 18, 'site-sidebar-style', 'default'),
(50, 18, 'astra-migrate-meta-layouts', 'set'),
(51, 18, '_edit_lock', '1771271878:2'),
(52, 20, '_edit_last', '1'),
(53, 20, '_edit_lock', '1771485088:1'),
(54, 20, '_wp_page_template', 'elementor_header_footer'),
(55, 20, 'site-sidebar-layout', 'no-sidebar'),
(60, 20, 'theme-transparent-header-meta', 'default'),
(57, 20, 'ast-site-content-layout', 'full-width-container'),
(58, 20, 'site-content-style', 'default'),
(59, 20, 'site-sidebar-style', 'default'),
(61, 20, 'astra-migrate-meta-layouts', 'set'),
(62, 22, '_edit_last', '1'),
(63, 22, '_wp_page_template', 'elementor_header_footer'),
(64, 22, 'site-sidebar-layout', 'default'),
(69, 22, 'theme-transparent-header-meta', 'default'),
(66, 22, 'ast-site-content-layout', 'default'),
(67, 22, 'site-content-style', 'default'),
(68, 22, 'site-sidebar-style', 'default'),
(70, 22, 'astra-migrate-meta-layouts', 'set'),
(71, 22, '_edit_lock', '1770028741:1'),
(72, 24, '_edit_last', '1'),
(73, 24, '_wp_page_template', 'elementor_header_footer'),
(74, 24, 'site-sidebar-layout', 'no-sidebar'),
(79, 24, 'theme-transparent-header-meta', 'default'),
(76, 24, 'ast-site-content-layout', 'full-width-container'),
(77, 24, 'site-content-style', 'default'),
(78, 24, 'site-sidebar-style', 'default'),
(80, 24, 'astra-migrate-meta-layouts', 'set'),
(81, 24, '_edit_lock', '1771485245:1'),
(82, 26, '_edit_last', '1'),
(83, 26, '_edit_lock', '1770626506:1'),
(84, 26, '_wp_page_template', 'elementor_header_footer'),
(85, 26, 'site-sidebar-layout', 'no-sidebar'),
(90, 26, 'theme-transparent-header-meta', 'default'),
(87, 26, 'ast-site-content-layout', 'full-width-container'),
(88, 26, 'site-content-style', 'default'),
(89, 26, 'site-sidebar-style', 'default'),
(91, 26, 'astra-migrate-meta-layouts', 'set'),
(92, 30, '_menu_item_type', 'custom'),
(93, 30, '_menu_item_menu_item_parent', '0'),
(94, 30, '_menu_item_object_id', '30'),
(95, 30, '_menu_item_object', 'custom'),
(96, 30, '_menu_item_target', ''),
(97, 30, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(98, 30, '_menu_item_xfn', ''),
(99, 30, '_menu_item_url', 'https://mrarif.me/oasis/'),
(100, 30, '_menu_item_orphaned', '1770028973'),
(101, 31, '_menu_item_type', 'post_type'),
(102, 31, '_menu_item_menu_item_parent', '0'),
(103, 31, '_menu_item_object_id', '14'),
(104, 31, '_menu_item_object', 'page'),
(105, 31, '_menu_item_target', ''),
(106, 31, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(107, 31, '_menu_item_xfn', ''),
(108, 31, '_menu_item_url', ''),
(178, 12, '_astra_content_layout_flag', 'disabled'),
(110, 32, '_menu_item_type', 'post_type'),
(111, 32, '_menu_item_menu_item_parent', '0'),
(112, 32, '_menu_item_object_id', '22'),
(113, 32, '_menu_item_object', 'page'),
(114, 32, '_menu_item_target', ''),
(115, 32, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(116, 32, '_menu_item_xfn', ''),
(117, 32, '_menu_item_url', ''),
(174, 39, '_elementor_template_type', 'kit'),
(119, 33, '_menu_item_type', 'post_type'),
(120, 33, '_menu_item_menu_item_parent', '0'),
(121, 33, '_menu_item_object_id', '24'),
(122, 33, '_menu_item_object', 'page'),
(123, 33, '_menu_item_target', ''),
(124, 33, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(125, 33, '_menu_item_xfn', ''),
(126, 33, '_menu_item_url', ''),
(175, 7, '_wp_page_template', 'default'),
(128, 34, '_menu_item_type', 'post_type'),
(129, 34, '_menu_item_menu_item_parent', '0'),
(130, 34, '_menu_item_object_id', '26'),
(131, 34, '_menu_item_object', 'page'),
(132, 34, '_menu_item_target', ''),
(133, 34, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(134, 34, '_menu_item_xfn', ''),
(135, 34, '_menu_item_url', ''),
(173, 39, '_elementor_edit_mode', 'builder'),
(137, 35, '_menu_item_type', 'post_type'),
(138, 35, '_menu_item_menu_item_parent', '0'),
(139, 35, '_menu_item_object_id', '12'),
(140, 35, '_menu_item_object', 'page'),
(141, 35, '_menu_item_target', ''),
(142, 35, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(143, 35, '_menu_item_xfn', ''),
(144, 35, '_menu_item_url', ''),
(146, 36, '_menu_item_type', 'post_type'),
(147, 36, '_menu_item_menu_item_parent', '0'),
(148, 36, '_menu_item_object_id', '18'),
(149, 36, '_menu_item_object', 'page'),
(150, 36, '_menu_item_target', ''),
(151, 36, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(152, 36, '_menu_item_xfn', ''),
(153, 36, '_menu_item_url', ''),
(155, 37, '_menu_item_type', 'post_type'),
(156, 37, '_menu_item_menu_item_parent', '0'),
(157, 37, '_menu_item_object_id', '20'),
(158, 37, '_menu_item_object', 'page'),
(159, 37, '_menu_item_target', ''),
(160, 37, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(161, 37, '_menu_item_xfn', ''),
(162, 37, '_menu_item_url', ''),
(176, 7, '_elementor_page_settings', 'a:22:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:27:\"Oasis Health Care Community\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:9:\"site_logo\";a:5:{s:3:\"url\";s:90:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\";s:2:\"id\";i:636;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:71:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-faveiocn-a.png\";s:2:\"id\";i:60;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;}'),
(164, 38, '_menu_item_type', 'post_type'),
(165, 38, '_menu_item_menu_item_parent', '0'),
(166, 38, '_menu_item_object_id', '16'),
(167, 38, '_menu_item_object', 'page'),
(168, 38, '_menu_item_target', ''),
(169, 38, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(170, 38, '_menu_item_xfn', ''),
(171, 38, '_menu_item_url', ''),
(177, 12, '_elementor_edit_mode', 'builder'),
(180, 12, 'ast-title-bar-display', 'disabled'),
(181, 12, 'ast-featured-img', 'disabled'),
(182, 12, '_elementor_template_type', 'wp-page'),
(183, 12, '_elementor_version', '3.35.5'),
(184, 12, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(207, 12, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab-1.webp\",\"id\":1156,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(303, 58, '_elementor_page_settings', 'a:1:{s:16:\"site_description\";s:7:\"Welcome\";}'),
(195, 41, '_wp_page_template', 'elementor_header_footer'),
(196, 41, '_elementor_edit_mode', 'builder'),
(197, 41, '_elementor_template_type', 'wp-page'),
(198, 41, '_elementor_version', '3.35.0'),
(199, 41, '_elementor_pro_version', '3.35.0'),
(200, 41, '_elementor_page_settings', 'a:0:{}'),
(201, 42, '_wp_page_template', 'elementor_header_footer'),
(202, 42, '_elementor_edit_mode', 'builder'),
(203, 42, '_elementor_template_type', 'wp-page'),
(204, 42, '_elementor_version', '3.35.0'),
(205, 42, '_elementor_pro_version', '3.35.0'),
(206, 42, '_elementor_page_settings', 'a:0:{}'),
(208, 43, '_wp_page_template', 'elementor_header_footer'),
(209, 43, '_elementor_edit_mode', 'builder'),
(210, 43, '_elementor_template_type', 'wp-page'),
(211, 43, '_elementor_version', '3.35.0'),
(212, 43, '_elementor_pro_version', '3.35.0'),
(213, 43, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(325, 62, '_elementor_data', '[]'),
(326, 62, '_elementor_version', '3.35.0'),
(219, 45, '_wp_page_template', 'elementor_header_footer'),
(220, 45, '_elementor_edit_mode', 'builder'),
(221, 45, '_elementor_template_type', 'wp-page'),
(222, 45, '_elementor_version', '3.35.0'),
(223, 45, '_elementor_pro_version', '3.35.0'),
(224, 45, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(217, 44, '_wp_attached_file', '2026/02/home-banner-a.jpg'),
(218, 44, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:25:\"2026/02/home-banner-a.jpg\";s:8:\"filesize\";i:296945;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"home-banner-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15425;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"home-banner-a-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125420;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"home-banner-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"home-banner-a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74081;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"home-banner-a-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257272;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(327, 62, '_elementor_pro_version', '3.35.0'),
(226, 45, '_elementor_page_settings', 'a:0:{}'),
(227, 46, '_wp_page_template', 'elementor_header_footer'),
(228, 46, '_elementor_edit_mode', 'builder'),
(229, 46, '_elementor_template_type', 'wp-page'),
(230, 46, '_elementor_version', '3.35.0'),
(231, 46, '_elementor_pro_version', '3.35.0'),
(232, 46, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(234, 46, '_elementor_page_settings', 'a:0:{}'),
(235, 47, '_wp_page_template', 'elementor_header_footer'),
(236, 47, '_elementor_edit_mode', 'builder'),
(237, 47, '_elementor_template_type', 'wp-page'),
(238, 47, '_elementor_version', '3.35.0'),
(239, 47, '_elementor_pro_version', '3.35.0'),
(240, 47, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(246, 48, '_wp_page_template', 'elementor_header_footer'),
(247, 48, '_elementor_edit_mode', 'builder'),
(248, 48, '_elementor_template_type', 'wp-page'),
(249, 48, '_elementor_version', '3.35.0'),
(250, 48, '_elementor_pro_version', '3.35.0'),
(251, 48, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(435, 72, '_wp_page_template', 'elementor_header_footer'),
(436, 72, '_elementor_edit_mode', 'builder'),
(437, 72, '_elementor_template_type', 'wp-page'),
(438, 72, '_elementor_version', '3.35.0'),
(439, 72, '_elementor_pro_version', '3.35.0'),
(440, 72, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(253, 48, '_elementor_page_settings', 'a:0:{}'),
(300, 58, '_elementor_edit_mode', 'builder'),
(301, 58, '_elementor_template_type', 'kit'),
(302, 58, '_wp_page_template', 'default'),
(321, 62, '_elementor_edit_mode', 'builder'),
(322, 62, '_elementor_template_type', 'kit'),
(281, 51, '_edit_lock', '1770031950:1'),
(282, 51, '_wp_trash_meta_status', 'publish'),
(283, 51, '_wp_trash_meta_time', '1770031968'),
(284, 52, '_edit_lock', '1770032021:1'),
(285, 52, '_wp_trash_meta_status', 'publish'),
(286, 52, '_wp_trash_meta_time', '1770032056'),
(287, 53, '_edit_lock', '1770032083:1'),
(288, 53, '_wp_trash_meta_status', 'publish'),
(289, 53, '_wp_trash_meta_time', '1770032100'),
(290, 54, '_edit_lock', '1770032111:1'),
(291, 54, '_wp_trash_meta_status', 'publish'),
(292, 54, '_wp_trash_meta_time', '1770032128'),
(293, 55, '_wp_trash_meta_status', 'publish'),
(294, 55, '_wp_trash_meta_time', '1770032168'),
(295, 56, '_wp_trash_meta_status', 'publish'),
(296, 56, '_wp_trash_meta_time', '1770032200'),
(297, 57, '_wp_trash_meta_status', 'publish'),
(256, 49, '_wp_page_template', 'elementor_header_footer'),
(257, 49, '_elementor_edit_mode', 'builder'),
(258, 49, '_elementor_template_type', 'wp-page'),
(259, 49, '_elementor_version', '3.35.0'),
(260, 49, '_elementor_pro_version', '3.35.0'),
(261, 49, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(263, 49, '_elementor_page_settings', 'a:0:{}'),
(298, 57, '_wp_trash_meta_time', '1770032224'),
(299, 7, '_edit_lock', '1770637500:1'),
(266, 50, '_wp_page_template', 'elementor_header_footer'),
(267, 50, '_elementor_edit_mode', 'builder'),
(268, 50, '_elementor_template_type', 'wp-page'),
(269, 50, '_elementor_version', '3.35.0'),
(270, 50, '_elementor_pro_version', '3.35.0'),
(271, 50, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(323, 62, '_wp_page_template', 'default'),
(324, 62, '_elementor_page_settings', 'a:14:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Oasis\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:9:\"site_logo\";a:5:{s:3:\"url\";s:67:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\";s:2:\"id\";i:61;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:71:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-faveiocn-a.png\";s:2:\"id\";i:60;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}}'),
(316, 60, '_wp_attached_file', '2026/02/oasis-faveiocn-a.png'),
(317, 60, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:151;s:6:\"height\";i:166;s:4:\"file\";s:28:\"2026/02/oasis-faveiocn-a.png\";s:8:\"filesize\";i:18348;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"oasis-faveiocn-a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12024;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(318, 61, '_wp_attached_file', '2026/02/oasis-logo-a.png'),
(319, 61, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:459;s:6:\"height\";i:190;s:4:\"file\";s:24:\"2026/02/oasis-logo-a.png\";s:8:\"filesize\";i:79539;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"oasis-logo-a-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30714;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"oasis-logo-a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16741;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(305, 7, '_elementor_data', '[]'),
(306, 59, '_elementor_edit_mode', 'builder'),
(307, 59, '_elementor_template_type', 'kit'),
(308, 59, '_wp_page_template', 'default'),
(309, 59, '_elementor_page_settings', 'a:12:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:5:\"Oasis\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),
(311, 59, '_elementor_data', '[]'),
(313, 7, '_elementor_version', '3.35.0'),
(314, 7, '_elementor_pro_version', '3.35.0'),
(482, 77, '_wp_page_template', 'elementor_header_footer'),
(466, 75, '_wp_page_template', 'elementor_header_footer'),
(467, 75, '_elementor_edit_mode', 'builder'),
(468, 75, '_elementor_template_type', 'wp-page'),
(469, 75, '_elementor_version', '3.35.0'),
(470, 75, '_elementor_pro_version', '3.35.0'),
(471, 75, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3278, 367, '_elementor_source', 'post'),
(3279, 367, '_elementor_edit_mode', 'builder'),
(3280, 367, '_elementor_template_type', 'header'),
(3281, 367, '_elementor_version', '3.35.0'),
(3282, 367, '_elementor_pro_version', '3.35.0'),
(3283, 367, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3284, 367, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(2613, 300, '_elementor_source', 'post'),
(2614, 300, '_elementor_edit_mode', 'builder'),
(2615, 300, '_elementor_template_type', 'header'),
(2616, 300, '_elementor_version', '3.35.0'),
(2617, 300, '_elementor_pro_version', '3.35.0'),
(2618, 300, '_wp_page_template', 'default'),
(2619, 300, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#000000\",\"color_menu_item_hover\":\"#9b485f\",\"color_menu_item_active\":\"#9b485f\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#ffffff\",\"background_color_dropdown_item\":\"#218dcd\",\"color_dropdown_item_hover\":\"#ffffff\",\"background_color_dropdown_item_hover\":\"#9b485f\",\"color_dropdown_item_active\":\"#ffffff\",\"background_color_dropdown_item_active\":\"#9b485f\",\"toggle_color\":\"#000000\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#000000\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#ffffff\",\"mobile_link_color\":\"#000000\",\"mobile_sub_link_bg_color\":\"#ffffff\",\"mobile_sub_link_color\":\"#000000\",\"mobile_link_hover\":\"#ffffff\",\"mobile_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_bg_hover\":\"#218dcd\",\"mobile_sub_link_hover\":\"#ffffff\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor2\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"globals\\/colors?id=astglobalcolor2\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(2553, 295, '_elementor_source', 'post'),
(2554, 295, '_elementor_edit_mode', 'builder'),
(2555, 295, '_elementor_template_type', 'header'),
(2556, 295, '_elementor_version', '3.35.0'),
(2557, 295, '_elementor_pro_version', '3.35.0'),
(2558, 295, '_wp_page_template', 'default'),
(2559, 295, '_elementor_data', '[{\"id\":\"71b47920\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5b37a7a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"68bd4b30\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43b7ffe2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70320333\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c9e3751\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7c53e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"569a8cfb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45bb9b89\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8701d31\"},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17b2a992\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"51b54771\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"170591b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bf75879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d13075e\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66a3a7f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"75f486d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2574, 297, '_elementor_source', 'post'),
(2564, 296, '_elementor_source', 'post'),
(2565, 296, '_elementor_edit_mode', 'builder'),
(2566, 296, '_elementor_template_type', 'header'),
(2567, 296, '_elementor_version', '3.35.0'),
(2568, 296, '_elementor_pro_version', '3.35.0'),
(2569, 296, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2570, 296, '_elementor_data', '[{\"id\":\"71b47920\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5b37a7a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"68bd4b30\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43b7ffe2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70320333\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c9e3751\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7c53e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"569a8cfb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45bb9b89\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8701d31\"},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17b2a992\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"51b54771\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"170591b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bf75879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d13075e\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66a3a7f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"75f486d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2563, 291, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2572, 296, '_elementor_page_settings', 'a:0:{}'),
(2573, 296, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2575, 297, '_elementor_edit_mode', 'builder'),
(2576, 297, '_elementor_template_type', 'header'),
(2577, 297, '_elementor_version', '3.35.0'),
(2578, 297, '_elementor_pro_version', '3.35.0'),
(2579, 297, '_wp_page_template', 'default'),
(2580, 297, '_elementor_data', '[{\"id\":\"71b47920\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5b37a7a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"68bd4b30\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43b7ffe2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70320333\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c9e3751\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7c53e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"569a8cfb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45bb9b89\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8701d31\"},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17b2a992\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"51b54771\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"170591b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bf75879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d13075e\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66a3a7f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"75f486d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2582, 297, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2601, 299, '_elementor_source', 'post'),
(2602, 299, '_elementor_edit_mode', 'builder'),
(2603, 299, '_elementor_template_type', 'header'),
(2604, 299, '_elementor_version', '3.35.0'),
(2605, 299, '_elementor_pro_version', '3.35.0'),
(2606, 299, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2607, 299, '_elementor_data', '[{\"id\":\"71b47920\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5b37a7a2\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"68bd4b30\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"43b7ffe2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"70320333\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5c9e3751\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7c53e95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"569a8cfb\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"45bb9b89\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8701d31\"},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"17b2a992\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"51b54771\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"170591b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bf75879\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d13075e\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66a3a7f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"75f486d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4756, 512, '_elementor_source', 'post'),
(4757, 512, '_elementor_edit_mode', 'builder'),
(4758, 512, '_elementor_template_type', 'footer'),
(4759, 512, '_elementor_version', '3.35.0'),
(4760, 512, '_elementor_pro_version', '3.35.0'),
(4761, 512, '_wp_page_template', 'default'),
(4762, 512, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2545, 294, '_elementor_source', 'post'),
(2546, 294, '_elementor_edit_mode', 'builder'),
(2547, 294, '_elementor_template_type', 'header'),
(2548, 294, '_elementor_version', '3.35.0'),
(2549, 294, '_elementor_pro_version', '3.35.0'),
(2550, 294, '_elementor_page_settings', 'a:0:{}'),
(2551, 291, '_wp_page_template', 'default'),
(2753, 311, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2760, 312, '_elementor_pro_version', '3.35.0'),
(2761, 312, '_wp_page_template', 'default'),
(2762, 312, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2764, 312, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2769, 313, '_elementor_source', 'post'),
(2770, 313, '_elementor_edit_mode', 'builder'),
(2771, 313, '_elementor_template_type', 'footer'),
(2772, 313, '_elementor_version', '3.35.0'),
(2773, 313, '_elementor_pro_version', '3.35.0'),
(2774, 313, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2775, 313, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7704, 813, '_elementor_page_settings', 'a:0:{}'),
(7705, 814, '_wp_page_template', 'elementor_header_footer'),
(7706, 814, '_elementor_edit_mode', 'builder'),
(7707, 814, '_elementor_template_type', 'wp-page'),
(7708, 814, '_elementor_version', '3.35.0'),
(7709, 814, '_elementor_pro_version', '3.35.0'),
(7710, 814, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3503, 385, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2832, 318, '_elementor_page_settings', 'a:0:{}'),
(3057, 338, '_elementor_template_type', 'wp-page'),
(441, 72, '_elementor_page_settings', 'a:0:{}'),
(4626, 498, '_elementor_page_settings', 'a:0:{}'),
(4629, 499, '_elementor_edit_mode', 'builder'),
(4630, 499, '_elementor_template_type', 'wp-page'),
(4631, 499, '_elementor_version', '3.35.0'),
(4632, 499, '_elementor_pro_version', '3.35.0'),
(4633, 499, '_elementor_data', '[{\"id\":\"38b35b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"2234cbf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df73ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b99ba40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"cc64a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication Reminders\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd15989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(445, 73, '_wp_page_template', 'elementor_header_footer'),
(446, 73, '_elementor_edit_mode', 'builder'),
(447, 73, '_elementor_template_type', 'wp-page'),
(448, 73, '_elementor_version', '3.35.0'),
(449, 73, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(450, 73, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}]},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(451, 73, '_elementor_page_settings', 'a:0:{}'),
(4618, 497, '_elementor_page_settings', 'a:0:{}'),
(4619, 498, '_wp_page_template', 'elementor_header_footer'),
(4621, 498, '_elementor_edit_mode', 'builder'),
(4622, 498, '_elementor_template_type', 'wp-page'),
(4623, 498, '_elementor_version', '3.35.0'),
(4624, 498, '_elementor_pro_version', '3.35.0'),
(4625, 498, '_elementor_data', '[{\"id\":\"38b35b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"2234cbf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df73ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b99ba40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"cc64a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication Reminders\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd15989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(455, 74, '_wp_page_template', 'elementor_header_footer'),
(456, 74, '_elementor_edit_mode', 'builder'),
(457, 74, '_elementor_template_type', 'wp-page'),
(458, 74, '_elementor_version', '3.35.0'),
(459, 74, '_elementor_pro_version', '3.35.0'),
(460, 74, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4627, 499, '_wp_page_template', 'elementor_header_footer'),
(4611, 497, '_wp_page_template', 'elementor_header_footer'),
(4613, 497, '_elementor_edit_mode', 'builder'),
(4614, 497, '_elementor_template_type', 'wp-page'),
(4615, 497, '_elementor_version', '3.35.0'),
(4616, 497, '_elementor_pro_version', '3.35.0'),
(4617, 497, '_elementor_data', '[{\"id\":\"38b35b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"2234cbf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df73ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b99ba40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"cc64a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication Reminders\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd15989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(473, 75, '_elementor_page_settings', 'a:0:{}'),
(474, 76, '_wp_page_template', 'elementor_header_footer'),
(475, 76, '_elementor_edit_mode', 'builder'),
(476, 76, '_elementor_template_type', 'wp-page'),
(477, 76, '_elementor_version', '3.35.0'),
(478, 76, '_elementor_pro_version', '3.35.0'),
(479, 76, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":698,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(481, 76, '_elementor_page_settings', 'a:0:{}'),
(483, 77, '_elementor_edit_mode', 'builder'),
(484, 77, '_elementor_template_type', 'wp-page'),
(485, 77, '_elementor_version', '3.35.0'),
(486, 77, '_elementor_pro_version', '3.35.0'),
(487, 77, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":730,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(660, 91, '_wp_page_template', 'elementor_header_footer'),
(661, 91, '_elementor_edit_mode', 'builder'),
(662, 91, '_elementor_template_type', 'wp-page'),
(663, 91, '_elementor_version', '3.35.0'),
(664, 91, '_elementor_pro_version', '3.35.0'),
(665, 91, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":730,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(691, 94, '_wp_page_template', 'elementor_header_footer'),
(692, 94, '_elementor_edit_mode', 'builder'),
(693, 94, '_elementor_template_type', 'wp-page'),
(694, 94, '_elementor_version', '3.35.0'),
(695, 94, '_elementor_pro_version', '3.35.0'),
(696, 94, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2858, 321, '_wp_page_template', 'elementor_header_footer'),
(2859, 321, '_elementor_edit_mode', 'builder'),
(2860, 321, '_elementor_template_type', 'wp-page'),
(2861, 321, '_elementor_version', '3.35.0'),
(2862, 321, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2863, 321, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7870, 833, '_elementor_page_settings', 'a:0:{}'),
(3453, 382, '_elementor_source', 'post'),
(3454, 382, '_elementor_edit_mode', 'builder'),
(3455, 382, '_elementor_template_type', 'footer'),
(3456, 382, '_elementor_version', '3.35.0'),
(3457, 382, '_elementor_pro_version', '3.35.0'),
(3458, 382, '_wp_page_template', 'default'),
(3459, 382, '_elementor_data', '[{\"id\":\"12739ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aff0a97\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fcfbfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1415b47\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a7976ae\"}]},\"elements\":[{\"id\":\"f283c6c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"86e4577\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e41a9b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"03542b5\"}],\"pp_display_conditions\":[{\"_id\":\"cbe5889\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b606a2d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"874d6fb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0fa9618\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"784eb45\"}],\"pp_display_conditions\":[{\"_id\":\"deba98f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3574, 391, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3580, 392, '_elementor_source', 'post'),
(3581, 392, '_elementor_edit_mode', 'builder'),
(3582, 392, '_elementor_template_type', 'footer'),
(3583, 392, '_elementor_version', '3.35.0'),
(3584, 392, '_elementor_pro_version', '3.35.0'),
(3585, 392, '_wp_page_template', 'default'),
(3586, 392, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3674, 401, '_elementor_source', 'post'),
(3675, 401, '_elementor_edit_mode', 'builder'),
(3676, 401, '_elementor_template_type', 'header'),
(3677, 401, '_elementor_version', '3.35.0'),
(3678, 401, '_elementor_pro_version', '3.35.0'),
(2811, 316, '_elementor_page_settings', 'a:0:{}'),
(3531, 388, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3539, 389, '_elementor_source', 'post'),
(3540, 389, '_elementor_edit_mode', 'builder'),
(3541, 389, '_elementor_template_type', 'footer'),
(3542, 389, '_elementor_version', '3.35.0'),
(3543, 389, '_elementor_pro_version', '3.35.0'),
(3544, 389, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3545, 389, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3522, 387, '_wp_attached_file', '2026/02/Careers-aav.jpg'),
(3523, 387, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:848;s:4:\"file\";s:23:\"2026/02/Careers-aav.jpg\";s:8:\"filesize\";i:81066;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Careers-aav-300x254.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:254;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Careers-aav-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8450;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"Careers-aav-768x651.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76961;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2807, 316, '_elementor_version', '3.35.0'),
(2808, 316, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2809, 316, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2806, 316, '_elementor_template_type', 'wp-page'),
(2805, 316, '_elementor_edit_mode', 'builder'),
(2804, 316, '_wp_page_template', 'elementor_header_footer'),
(7697, 813, '_wp_page_template', 'elementor_header_footer'),
(7698, 813, '_elementor_edit_mode', 'builder'),
(7699, 813, '_elementor_template_type', 'wp-page'),
(7700, 813, '_elementor_version', '3.35.0'),
(7701, 813, '_elementor_pro_version', '3.35.0'),
(7702, 813, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7664, 809, '_wp_attached_file', '2026/02/Our-Team-afm.jpg'),
(7665, 809, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/02/Our-Team-afm.jpg\";s:8:\"filesize\";i:119349;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Our-Team-afm-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16137;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"Our-Team-afm-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104904;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Our-Team-afm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7765;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Our-Team-afm-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67872;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3554, 390, '_elementor_source', 'post'),
(3555, 390, '_elementor_edit_mode', 'builder'),
(3556, 390, '_elementor_template_type', 'footer'),
(3557, 390, '_elementor_version', '3.35.0'),
(3558, 390, '_elementor_pro_version', '3.35.0'),
(3559, 390, '_wp_page_template', 'default'),
(3560, 390, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2777, 313, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3567, 391, '_elementor_source', 'post'),
(3568, 391, '_elementor_edit_mode', 'builder'),
(3569, 391, '_elementor_template_type', 'footer'),
(3570, 391, '_elementor_version', '3.35.0'),
(3571, 391, '_elementor_pro_version', '3.35.0'),
(3572, 391, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3573, 391, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2644, 302, '_elementor_source', 'post'),
(2645, 302, '_elementor_edit_mode', 'builder'),
(2646, 302, '_elementor_template_type', 'footer'),
(2647, 302, '_elementor_version', '3.35.0'),
(2648, 302, '_elementor_pro_version', '3.35.0'),
(2649, 302, '_elementor_page_settings', 'a:0:{}'),
(2650, 301, '_wp_page_template', 'default'),
(2686, 305, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(680, 93, '_wp_page_template', 'elementor_header_footer'),
(681, 93, '_elementor_edit_mode', 'builder'),
(682, 93, '_elementor_template_type', 'wp-page'),
(683, 93, '_elementor_version', '3.35.0'),
(684, 93, '_elementor_pro_version', '3.35.0'),
(685, 93, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(667, 91, '_elementor_page_settings', 'a:0:{}'),
(4602, 496, '_wp_page_template', 'elementor_header_footer'),
(4604, 496, '_elementor_edit_mode', 'builder'),
(4605, 496, '_elementor_template_type', 'wp-page'),
(4606, 496, '_elementor_version', '3.35.0'),
(4607, 496, '_elementor_pro_version', '3.35.0'),
(4608, 496, '_elementor_data', '[{\"id\":\"38b35b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"2234cbf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df73ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b99ba40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"cc64a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication Reminders\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd15989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(670, 92, '_wp_page_template', 'elementor_header_footer'),
(671, 92, '_elementor_edit_mode', 'builder'),
(672, 92, '_elementor_template_type', 'wp-page'),
(673, 92, '_elementor_version', '3.35.0'),
(674, 92, '_elementor_pro_version', '3.35.0'),
(675, 92, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":730,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(677, 92, '_elementor_page_settings', 'a:0:{}'),
(4578, 352, '_elementor_edit_mode', 'builder'),
(4579, 352, '_astra_content_layout_flag', 'disabled'),
(4601, 352, '_elementor_data', '[{\"id\":\"38b35b0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"2234cbf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"df73ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b99ba40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"cc64a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Medication Reminders\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd15989\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4581, 352, 'ast-title-bar-display', 'disabled'),
(4582, 352, 'ast-featured-img', 'disabled'),
(4583, 352, '_elementor_template_type', 'wp-page'),
(4584, 352, '_elementor_version', '3.35.0'),
(4585, 352, '_elementor_pro_version', '3.35.0'),
(4587, 494, '_wp_page_template', 'elementor_header_footer'),
(4589, 494, '_elementor_edit_mode', 'builder'),
(4590, 494, '_elementor_template_type', 'wp-page'),
(4591, 494, '_elementor_version', '3.35.0'),
(4592, 494, '_elementor_pro_version', '3.35.0'),
(4593, 494, '_elementor_page_settings', 'a:0:{}'),
(4594, 495, '_wp_page_template', 'elementor_header_footer'),
(4596, 495, '_elementor_edit_mode', 'builder'),
(4597, 495, '_elementor_template_type', 'wp-page'),
(4598, 495, '_elementor_version', '3.35.0'),
(4599, 495, '_elementor_pro_version', '3.35.0'),
(4600, 495, '_elementor_page_settings', 'a:0:{}'),
(7538, 795, '_elementor_edit_mode', 'builder'),
(7539, 795, '_elementor_template_type', 'wp-page'),
(7540, 795, '_elementor_version', '3.35.0'),
(7541, 795, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7542, 795, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(698, 94, '_elementor_page_settings', 'a:0:{}'),
(699, 95, '_wp_page_template', 'elementor_header_footer'),
(700, 95, '_elementor_edit_mode', 'builder'),
(701, 95, '_elementor_template_type', 'wp-page'),
(702, 95, '_elementor_version', '3.35.0'),
(703, 95, '_elementor_pro_version', '3.35.0'),
(704, 95, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}]},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(706, 95, '_elementor_page_settings', 'a:0:{}'),
(707, 96, '_wp_page_template', 'elementor_header_footer'),
(708, 96, '_elementor_edit_mode', 'builder'),
(709, 96, '_elementor_template_type', 'wp-page'),
(710, 96, '_elementor_version', '3.35.0'),
(711, 96, '_elementor_pro_version', '3.35.0'),
(712, 96, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(738, 99, '_wp_page_template', 'elementor_header_footer'),
(718, 97, '_wp_page_template', 'elementor_header_footer'),
(719, 97, '_elementor_edit_mode', 'builder'),
(720, 97, '_elementor_template_type', 'wp-page'),
(721, 97, '_elementor_version', '3.35.0'),
(722, 97, '_elementor_pro_version', '3.35.0'),
(723, 97, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(841, 106, '_wp_page_template', 'elementor_header_footer'),
(842, 106, '_elementor_edit_mode', 'builder'),
(843, 106, '_elementor_template_type', 'wp-page'),
(844, 106, '_elementor_version', '3.35.0'),
(845, 106, '_elementor_pro_version', '3.35.0'),
(846, 106, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(909, 113, '_wp_page_template', 'elementor_header_footer'),
(910, 113, '_elementor_edit_mode', 'builder'),
(911, 113, '_elementor_template_type', 'wp-page'),
(912, 113, '_elementor_version', '3.35.0'),
(913, 113, '_elementor_pro_version', '3.35.0'),
(725, 97, '_elementor_page_settings', 'a:0:{}'),
(4567, 493, '_wp_page_template', 'elementor_header_footer'),
(4569, 493, '_elementor_edit_mode', 'builder'),
(4570, 493, '_elementor_template_type', 'wp-page'),
(4571, 493, '_elementor_version', '3.35.0'),
(4572, 493, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4573, 493, '_elementor_data', '[{\"id\":\"bf6967b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"ea9b122\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"061b1ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"19fff43\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"2f0c71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meals: Breakfast, Lunch & Snacks\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e28601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nutritious meals and snacks are provided daily to support health and wellness. Menus are designed with consideration for dietary restrictions, special diets, and individual preferences.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4574, 350, '_elementor_page_settings', 'a:0:{}'),
(4575, 350, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(728, 98, '_wp_page_template', 'elementor_header_footer'),
(729, 98, '_elementor_edit_mode', 'builder'),
(730, 98, '_elementor_template_type', 'wp-page'),
(731, 98, '_elementor_version', '3.35.0'),
(732, 98, '_elementor_pro_version', '3.35.0'),
(733, 98, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(735, 98, '_elementor_page_settings', 'a:0:{}'),
(4549, 350, '_elementor_version', '3.35.0'),
(4550, 350, '_elementor_pro_version', '3.35.0'),
(4552, 491, '_wp_page_template', 'elementor_header_footer'),
(4554, 491, '_elementor_edit_mode', 'builder'),
(4555, 491, '_elementor_template_type', 'wp-page'),
(4556, 491, '_elementor_version', '3.35.0'),
(4557, 491, '_elementor_pro_version', '3.35.0'),
(4558, 491, '_elementor_page_settings', 'a:0:{}'),
(4559, 492, '_wp_page_template', 'elementor_header_footer'),
(4561, 492, '_elementor_edit_mode', 'builder'),
(4562, 492, '_elementor_template_type', 'wp-page'),
(4563, 492, '_elementor_version', '3.35.0'),
(4564, 492, '_elementor_pro_version', '3.35.0'),
(4565, 492, '_elementor_page_settings', 'a:0:{}'),
(739, 99, '_elementor_edit_mode', 'builder'),
(740, 99, '_elementor_template_type', 'wp-page'),
(741, 99, '_elementor_version', '3.35.0'),
(742, 99, '_elementor_pro_version', '3.35.0'),
(743, 99, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3460, 382, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(876, 110, '_wp_page_template', 'elementor_header_footer'),
(877, 110, '_elementor_edit_mode', 'builder'),
(878, 110, '_elementor_template_type', 'wp-page'),
(879, 110, '_elementor_version', '3.35.0'),
(880, 110, '_elementor_pro_version', '3.35.0'),
(881, 110, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2802, 315, '_elementor_page_settings', 'a:0:{}'),
(3546, 389, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2705, 307, '_elementor_pro_version', '3.35.0'),
(2706, 307, '_wp_page_template', 'default'),
(2707, 307, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by Devrivo\\n\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2709, 307, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2712, 308, '_elementor_source', 'post'),
(2713, 308, '_elementor_edit_mode', 'builder'),
(2714, 308, '_elementor_template_type', 'footer'),
(2715, 308, '_elementor_version', '3.35.0'),
(2716, 308, '_elementor_pro_version', '3.35.0'),
(2717, 308, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2718, 308, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by Devrivo\\n\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2720, 308, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2723, 309, '_elementor_source', 'post'),
(2724, 309, '_elementor_edit_mode', 'builder'),
(2725, 309, '_elementor_template_type', 'footer'),
(2726, 309, '_elementor_version', '3.35.0'),
(2727, 309, '_elementor_pro_version', '3.35.0'),
(2728, 309, '_wp_page_template', 'default'),
(2729, 309, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by Devrivo\\n\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2731, 309, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2756, 312, '_elementor_source', 'post'),
(2757, 312, '_elementor_edit_mode', 'builder'),
(2758, 312, '_elementor_template_type', 'footer'),
(2759, 312, '_elementor_version', '3.35.0'),
(2745, 311, '_elementor_source', 'post'),
(2746, 311, '_elementor_edit_mode', 'builder'),
(2747, 311, '_elementor_template_type', 'footer'),
(2748, 311, '_elementor_version', '3.35.0'),
(2749, 311, '_elementor_pro_version', '3.35.0'),
(2750, 311, '_wp_page_template', 'default'),
(2751, 311, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"},{\"id\":\"1e4594b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2026. All Rights Reserved. Website Developed by Devrivo\\n\",\"pp_display_conditions\":[{\"_id\":\"59f35cb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by Devrivo\\n\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3058, 338, '_elementor_version', '3.35.0'),
(3059, 338, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3060, 338, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2813, 317, '_wp_page_template', 'elementor_header_footer'),
(2814, 317, '_elementor_edit_mode', 'builder'),
(2815, 317, '_elementor_template_type', 'wp-page'),
(2816, 317, '_elementor_version', '3.35.0'),
(2817, 317, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2818, 317, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2701, 307, '_elementor_source', 'post'),
(2702, 307, '_elementor_edit_mode', 'builder'),
(2703, 307, '_elementor_template_type', 'footer'),
(2704, 307, '_elementor_version', '3.35.0'),
(2652, 303, '_elementor_source', 'post'),
(2653, 303, '_elementor_edit_mode', 'builder'),
(2654, 303, '_elementor_template_type', 'footer'),
(2655, 303, '_elementor_version', '3.35.0'),
(2656, 303, '_elementor_pro_version', '3.35.0'),
(2657, 303, '_wp_page_template', 'default'),
(2658, 303, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5df63d74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63a703dc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"720c3ab8\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2678, 305, '_elementor_source', 'post'),
(2679, 305, '_elementor_edit_mode', 'builder'),
(2680, 305, '_elementor_template_type', 'footer'),
(2681, 305, '_elementor_version', '3.35.0'),
(2682, 305, '_elementor_pro_version', '3.35.0'),
(2683, 305, '_wp_page_template', 'default'),
(2684, 305, '_elementor_data', '[{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#1D1D1D\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor2\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5df63d74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Hours\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63a703dc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"720c3ab8\",\"elType\":\"widget\",\"settings\":{\"business_hours\":[{\"day\":\"Sunday\",\"highlight\":\"yes\",\"_id\":\"a387f05\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}},{\"_id\":\"da64ace\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"a4cc763\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"6778403\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"54a0872\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"12ce824\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"highlight\":\"yes\",\"_id\":\"9cfdedb\",\"opening_hours\":\"10:00\",\"closing_hours\":\"19:00\",\"closed_text\":\"Closed\",\"__globals__\":{\"highlight_color\":\"globals\\/colors?id=astglobalcolor2\"}}],\"business_hours_custom\":[{\"day\":\"Monday\",\"_id\":\"cee2f1e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Tuesday\",\"_id\":\"45ae0c5\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Wednesday\",\"_id\":\"86a6f01\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Thursday\",\"_id\":\"7a864b7\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Friday\",\"_id\":\"7829cb0\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Saturday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"0ab76c1\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"},{\"day\":\"Sunday\",\"closed\":\"yes\",\"highlight\":\"yes\",\"highlight_color\":\"#bc1705\",\"_id\":\"872d85e\",\"time\":\"09:00 AM - 05:00 PM\",\"closed_text\":\"Closed\"}],\"rows_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"3\",\"bottom\":\"5\",\"left\":\"3\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"ef806cc\",\"pp_condition_date_time_before_value\":\"2024-06-11 13:29\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"closed_row_day_color\":\"\",\"closed_row_tex_color\":\"\",\"day_color\":\"globals\\/colors?id=astglobalcolor2\",\"hours_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"pp-business-hours\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor3\"}},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright 2024 All Rights Reserved\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2662, 301, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3425, 380, '_elementor_source', 'post'),
(3426, 380, '_elementor_edit_mode', 'builder'),
(3427, 380, '_elementor_template_type', 'footer'),
(3428, 380, '_elementor_version', '3.35.0'),
(3429, 380, '_elementor_pro_version', '3.35.0'),
(3430, 380, '_wp_page_template', 'default'),
(3431, 380, '_elementor_data', '[{\"id\":\"12739ae\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"aff0a97\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fcfbfac\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1415b47\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a7976ae\"}]},\"elements\":[{\"id\":\"f283c6c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"86e4577\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e41a9b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"03542b5\"}],\"pp_display_conditions\":[{\"_id\":\"cbe5889\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"b606a2d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"874d6fb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0fa9618\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"784eb45\"}],\"pp_display_conditions\":[{\"_id\":\"deba98f\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(848, 106, '_elementor_page_settings', 'a:0:{}'),
(10623, 1102, '_wp_page_template', 'elementor_header_footer'),
(10603, 1100, '_wp_page_template', 'elementor_header_footer'),
(10604, 1100, '_elementor_edit_mode', 'builder'),
(10605, 1100, '_elementor_template_type', 'wp-page'),
(10606, 1100, '_elementor_version', '3.35.0'),
(10607, 1100, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10608, 1100, '_elementor_data', '[{\"id\":\"dc9d95f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"8401f01\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0ac60f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d80648\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4b6e343\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Health Care Monitoring\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b841b19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4543, 350, '_elementor_edit_mode', 'builder'),
(4544, 350, '_astra_content_layout_flag', 'disabled'),
(4566, 350, '_elementor_data', '[{\"id\":\"bf6967b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"ea9b122\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"061b1ac\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"19fff43\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"2f0c71b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meals: Breakfast, Lunch & Snacks\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e28601\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Nutritious meals and snacks are provided daily to support health and wellness. Menus are designed with consideration for dietary restrictions, special diets, and individual preferences.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4546, 350, 'ast-title-bar-display', 'disabled'),
(4547, 350, 'ast-featured-img', 'disabled'),
(4548, 350, '_elementor_template_type', 'wp-page'),
(851, 107, '_wp_page_template', 'elementor_header_footer'),
(852, 107, '_elementor_edit_mode', 'builder'),
(853, 107, '_elementor_template_type', 'wp-page'),
(854, 107, '_elementor_version', '3.35.0'),
(855, 107, '_elementor_pro_version', '3.35.0'),
(856, 107, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(858, 107, '_elementor_page_settings', 'a:0:{}'),
(4534, 490, '_wp_page_template', 'elementor_header_footer'),
(4536, 490, '_elementor_edit_mode', 'builder'),
(4537, 490, '_elementor_template_type', 'wp-page'),
(4538, 490, '_elementor_version', '3.35.0'),
(4539, 490, '_elementor_pro_version', '3.35.0'),
(4540, 490, '_elementor_data', '[{\"id\":\"dc9d95f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"8401f01\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0ac60f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d80648\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4b6e343\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Health Care Monitoring\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b841b19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(861, 108, '_wp_page_template', 'elementor_header_footer'),
(862, 108, '_elementor_edit_mode', 'builder'),
(863, 108, '_elementor_template_type', 'wp-page'),
(864, 108, '_elementor_version', '3.35.0'),
(865, 108, '_elementor_pro_version', '3.35.0'),
(866, 108, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(914, 113, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(874, 109, '_wp_attached_file', '2026/02/About-Oasis-Adult-Day-Care-aa.jpg'),
(875, 109, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:41:\"2026/02/About-Oasis-Adult-Day-Care-aa.jpg\";s:8:\"filesize\";i:83869;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"About-Oasis-Adult-Day-Care-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"About-Oasis-Adult-Day-Care-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7781;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"About-Oasis-Adult-Day-Care-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77004;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(883, 110, '_elementor_page_settings', 'a:0:{}'),
(7537, 795, '_wp_page_template', 'elementor_header_footer'),
(4510, 348, '_elementor_edit_mode', 'builder'),
(4511, 348, '_astra_content_layout_flag', 'disabled'),
(4533, 348, '_elementor_data', '[{\"id\":\"dc9d95f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"8401f01\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0ac60f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d80648\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4b6e343\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Health Care Monitoring\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b841b19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4513, 348, 'ast-title-bar-display', 'disabled'),
(4514, 348, 'ast-featured-img', 'disabled'),
(4515, 348, '_elementor_template_type', 'wp-page'),
(4516, 348, '_elementor_version', '3.35.0'),
(4517, 348, '_elementor_pro_version', '3.35.0'),
(4519, 488, '_wp_page_template', 'elementor_header_footer'),
(4521, 488, '_elementor_edit_mode', 'builder'),
(4522, 488, '_elementor_template_type', 'wp-page'),
(4523, 488, '_elementor_version', '3.35.0'),
(4524, 488, '_elementor_pro_version', '3.35.0'),
(4525, 488, '_elementor_page_settings', 'a:0:{}'),
(4526, 489, '_wp_page_template', 'elementor_header_footer'),
(4528, 489, '_elementor_edit_mode', 'builder'),
(4529, 489, '_elementor_template_type', 'wp-page'),
(4530, 489, '_elementor_version', '3.35.0'),
(4531, 489, '_elementor_pro_version', '3.35.0'),
(4532, 489, '_elementor_page_settings', 'a:0:{}'),
(886, 111, '_wp_page_template', 'elementor_header_footer'),
(887, 111, '_elementor_edit_mode', 'builder'),
(888, 111, '_elementor_template_type', 'wp-page'),
(889, 111, '_elementor_version', '3.35.0'),
(890, 111, '_elementor_pro_version', '3.35.0'),
(891, 111, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}]},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(893, 111, '_elementor_page_settings', 'a:0:{}'),
(929, 115, '_wp_page_template', 'elementor_header_footer'),
(930, 115, '_elementor_edit_mode', 'builder'),
(931, 115, '_elementor_template_type', 'wp-page'),
(896, 112, '_wp_page_template', 'elementor_header_footer'),
(897, 112, '_elementor_edit_mode', 'builder'),
(898, 112, '_elementor_template_type', 'wp-page'),
(899, 112, '_elementor_version', '3.35.0'),
(900, 112, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(901, 112, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(953, 118, '_wp_page_template', 'elementor_header_footer'),
(954, 118, '_elementor_edit_mode', 'builder'),
(955, 118, '_elementor_template_type', 'wp-page'),
(956, 118, '_elementor_version', '3.35.0'),
(957, 118, '_elementor_pro_version', '3.35.0'),
(958, 118, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(916, 113, '_elementor_page_settings', 'a:0:{}'),
(9832, 1025, '_wp_page_template', 'elementor_header_footer'),
(9582, 1004, '_wp_page_template', 'elementor_header_footer'),
(9562, 1002, '_wp_page_template', 'elementor_header_footer'),
(9563, 1002, '_elementor_edit_mode', 'builder'),
(9564, 1002, '_elementor_template_type', 'wp-page'),
(9565, 1002, '_elementor_version', '3.35.0'),
(9566, 1002, '_elementor_pro_version', '3.35.0'),
(9567, 1002, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(919, 114, '_wp_page_template', 'elementor_header_footer'),
(920, 114, '_elementor_edit_mode', 'builder'),
(921, 114, '_elementor_template_type', 'wp-page'),
(922, 114, '_elementor_version', '3.35.0'),
(923, 114, '_elementor_pro_version', '3.35.0'),
(924, 114, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9721a18\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(926, 114, '_elementor_page_settings', 'a:0:{}'),
(4488, 485, '_elementor_page_settings', 'a:0:{}'),
(4489, 486, '_wp_page_template', 'elementor_header_footer'),
(4491, 486, '_elementor_edit_mode', 'builder'),
(4492, 486, '_elementor_template_type', 'wp-page'),
(4493, 486, '_elementor_version', '3.35.0'),
(4494, 486, '_elementor_pro_version', '3.35.0'),
(4495, 486, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4496, 486, '_elementor_page_settings', 'a:0:{}'),
(4499, 487, '_elementor_edit_mode', 'builder'),
(4500, 487, '_elementor_template_type', 'wp-page'),
(4501, 487, '_elementor_version', '3.35.0'),
(4502, 487, '_elementor_pro_version', '3.35.0'),
(4503, 487, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(932, 115, '_elementor_version', '3.35.0'),
(933, 115, '_elementor_pro_version', '3.35.0'),
(934, 115, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(971, 120, '_wp_page_template', 'elementor_header_footer'),
(972, 120, '_elementor_edit_mode', 'builder'),
(973, 120, '_elementor_template_type', 'wp-page'),
(974, 120, '_elementor_version', '3.35.0'),
(975, 120, '_elementor_pro_version', '3.35.0'),
(976, 120, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EF492210\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(951, 117, '_wp_trash_meta_status', 'publish'),
(952, 117, '_wp_trash_meta_time', '1770037588'),
(981, 121, '_wp_page_template', 'elementor_header_footer'),
(982, 121, '_elementor_edit_mode', 'builder'),
(983, 121, '_elementor_template_type', 'wp-page'),
(984, 121, '_elementor_version', '3.35.0'),
(985, 121, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(986, 121, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EF492210\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(960, 118, '_elementor_page_settings', 'a:0:{}'),
(4497, 487, '_wp_page_template', 'elementor_header_footer'),
(4481, 485, '_wp_page_template', 'elementor_header_footer'),
(4483, 485, '_elementor_edit_mode', 'builder'),
(4484, 485, '_elementor_template_type', 'wp-page'),
(4485, 485, '_elementor_version', '3.35.0'),
(4486, 485, '_elementor_pro_version', '3.35.0'),
(4487, 485, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(962, 119, '_wp_page_template', 'elementor_header_footer'),
(963, 119, '_elementor_edit_mode', 'builder'),
(964, 119, '_elementor_template_type', 'wp-page'),
(965, 119, '_elementor_version', '3.35.0'),
(966, 119, '_elementor_pro_version', '3.35.0'),
(967, 119, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(969, 119, '_elementor_page_settings', 'a:0:{}'),
(4472, 484, '_wp_page_template', 'elementor_header_footer'),
(4474, 484, '_elementor_edit_mode', 'builder'),
(4475, 484, '_elementor_template_type', 'wp-page'),
(4476, 484, '_elementor_version', '3.35.0'),
(4477, 484, '_elementor_pro_version', '3.35.0'),
(4478, 484, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4448, 346, '_elementor_edit_mode', 'builder'),
(4449, 346, '_astra_content_layout_flag', 'disabled'),
(4471, 346, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans \\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4451, 346, 'ast-title-bar-display', 'disabled'),
(4452, 346, 'ast-featured-img', 'disabled'),
(4453, 346, '_elementor_template_type', 'wp-page'),
(4454, 346, '_elementor_version', '3.35.0'),
(4455, 346, '_elementor_pro_version', '3.35.0'),
(4457, 482, '_wp_page_template', 'elementor_header_footer'),
(4459, 482, '_elementor_edit_mode', 'builder'),
(4460, 482, '_elementor_template_type', 'wp-page'),
(4461, 482, '_elementor_version', '3.35.0'),
(4462, 482, '_elementor_pro_version', '3.35.0'),
(4463, 482, '_elementor_page_settings', 'a:0:{}'),
(4464, 483, '_wp_page_template', 'elementor_header_footer'),
(4466, 483, '_elementor_edit_mode', 'builder'),
(4467, 483, '_elementor_template_type', 'wp-page'),
(4468, 483, '_elementor_version', '3.35.0'),
(4469, 483, '_elementor_pro_version', '3.35.0'),
(4470, 483, '_elementor_page_settings', 'a:0:{}'),
(988, 121, '_elementor_page_settings', 'a:0:{}'),
(989, 122, '_wp_page_template', 'elementor_header_footer'),
(990, 122, '_elementor_edit_mode', 'builder'),
(991, 122, '_elementor_template_type', 'wp-page'),
(992, 122, '_elementor_version', '3.35.0'),
(993, 122, '_elementor_pro_version', '3.35.0'),
(994, 122, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#EF492210\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(996, 122, '_elementor_page_settings', 'a:0:{}'),
(997, 123, '_wp_page_template', 'elementor_header_footer'),
(998, 123, '_elementor_edit_mode', 'builder'),
(999, 123, '_elementor_template_type', 'wp-page'),
(1000, 123, '_elementor_version', '3.35.0'),
(1001, 123, '_elementor_pro_version', '3.35.0'),
(1002, 123, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1009, 125, '_wp_page_template', 'elementor_header_footer'),
(1010, 125, '_elementor_edit_mode', 'builder'),
(1011, 125, '_elementor_template_type', 'wp-page'),
(1012, 125, '_elementor_version', '3.35.0'),
(1013, 125, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1014, 125, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1006, 124, '_wp_attached_file', '2026/02/schedule_8302424.svg'),
(1007, 124, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5556;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1016, 125, '_elementor_page_settings', 'a:0:{}'),
(1017, 126, '_wp_page_template', 'elementor_header_footer'),
(1018, 126, '_elementor_edit_mode', 'builder'),
(1019, 126, '_elementor_template_type', 'wp-page'),
(1020, 126, '_elementor_version', '3.35.0'),
(1021, 126, '_elementor_pro_version', '3.35.0'),
(1022, 126, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1024, 126, '_elementor_page_settings', 'a:0:{}'),
(1025, 127, '_wp_page_template', 'elementor_header_footer'),
(1026, 127, '_elementor_edit_mode', 'builder'),
(1027, 127, '_elementor_template_type', 'wp-page'),
(1028, 127, '_elementor_version', '3.35.0'),
(1029, 127, '_elementor_pro_version', '3.35.0'),
(1030, 127, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1034, 128, '_wp_page_template', 'elementor_header_footer'),
(1035, 128, '_elementor_edit_mode', 'builder'),
(1036, 128, '_elementor_template_type', 'wp-page'),
(1037, 128, '_elementor_version', '3.35.0'),
(1038, 128, '_elementor_pro_version', '3.35.0'),
(1039, 128, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1041, 128, '_elementor_page_settings', 'a:0:{}'),
(1042, 129, '_wp_page_template', 'elementor_header_footer'),
(1043, 129, '_elementor_edit_mode', 'builder'),
(1044, 129, '_elementor_template_type', 'wp-page'),
(1045, 129, '_elementor_version', '3.35.0'),
(1046, 129, '_elementor_pro_version', '3.35.0'),
(1047, 129, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1049, 129, '_elementor_page_settings', 'a:0:{}'),
(1050, 130, '_wp_page_template', 'elementor_header_footer'),
(1051, 130, '_elementor_edit_mode', 'builder'),
(1052, 130, '_elementor_template_type', 'wp-page'),
(1053, 130, '_elementor_version', '3.35.0'),
(1054, 130, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1055, 130, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1075, 133, '_wp_page_template', 'elementor_header_footer'),
(1059, 131, '_wp_page_template', 'elementor_header_footer'),
(1060, 131, '_elementor_edit_mode', 'builder'),
(1061, 131, '_elementor_template_type', 'wp-page'),
(1062, 131, '_elementor_version', '3.35.0'),
(1063, 131, '_elementor_pro_version', '3.35.0'),
(1064, 131, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1066, 131, '_elementor_page_settings', 'a:0:{}'),
(1067, 132, '_wp_page_template', 'elementor_header_footer'),
(1068, 132, '_elementor_edit_mode', 'builder'),
(1069, 132, '_elementor_template_type', 'wp-page'),
(1070, 132, '_elementor_version', '3.35.0'),
(1071, 132, '_elementor_pro_version', '3.35.0'),
(1072, 132, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1074, 132, '_elementor_page_settings', 'a:0:{}'),
(1076, 133, '_elementor_edit_mode', 'builder'),
(1077, 133, '_elementor_template_type', 'wp-page'),
(1078, 133, '_elementor_version', '3.35.0'),
(1079, 133, '_elementor_pro_version', '3.35.0'),
(1080, 133, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1084, 134, '_wp_page_template', 'elementor_header_footer'),
(1085, 134, '_elementor_edit_mode', 'builder'),
(1086, 134, '_elementor_template_type', 'wp-page'),
(1087, 134, '_elementor_version', '3.35.0'),
(1088, 134, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1089, 134, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1091, 134, '_elementor_page_settings', 'a:0:{}'),
(1092, 135, '_wp_page_template', 'elementor_header_footer'),
(1093, 135, '_elementor_edit_mode', 'builder'),
(1094, 135, '_elementor_template_type', 'wp-page'),
(1095, 135, '_elementor_version', '3.35.0'),
(1096, 135, '_elementor_pro_version', '3.35.0'),
(1097, 135, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}]},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1099, 135, '_elementor_page_settings', 'a:0:{}'),
(1100, 136, '_wp_page_template', 'elementor_header_footer'),
(1101, 136, '_elementor_edit_mode', 'builder'),
(1102, 136, '_elementor_template_type', 'wp-page'),
(1103, 136, '_elementor_version', '3.35.0'),
(1104, 136, '_elementor_pro_version', '3.35.0'),
(1105, 136, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1109, 137, '_wp_page_template', 'elementor_header_footer'),
(1110, 137, '_elementor_edit_mode', 'builder'),
(1111, 137, '_elementor_template_type', 'wp-page'),
(1112, 137, '_elementor_version', '3.35.0'),
(1113, 137, '_elementor_pro_version', '3.35.0'),
(1114, 137, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1116, 137, '_elementor_page_settings', 'a:0:{}'),
(1117, 138, '_wp_page_template', 'elementor_header_footer'),
(1118, 138, '_elementor_edit_mode', 'builder'),
(1119, 138, '_elementor_template_type', 'wp-page'),
(1120, 138, '_elementor_version', '3.35.0'),
(1121, 138, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1122, 138, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1124, 138, '_elementor_page_settings', 'a:0:{}'),
(1125, 139, '_wp_page_template', 'elementor_header_footer'),
(1126, 139, '_elementor_edit_mode', 'builder'),
(1127, 139, '_elementor_template_type', 'wp-page'),
(1128, 139, '_elementor_version', '3.35.0'),
(1129, 139, '_elementor_pro_version', '3.35.0'),
(1130, 139, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1156, 142, '_wp_page_template', 'elementor_header_footer'),
(1136, 140, '_wp_page_template', 'elementor_header_footer'),
(1137, 140, '_elementor_edit_mode', 'builder'),
(1138, 140, '_elementor_template_type', 'wp-page'),
(1139, 140, '_elementor_version', '3.35.0'),
(1140, 140, '_elementor_pro_version', '3.35.0'),
(1141, 140, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1212, 147, '_wp_page_template', 'elementor_header_footer'),
(1213, 147, '_elementor_edit_mode', 'builder'),
(1214, 147, '_elementor_template_type', 'wp-page'),
(1181, 144, '_wp_page_template', 'elementor_header_footer'),
(1182, 144, '_elementor_edit_mode', 'builder'),
(1183, 144, '_elementor_template_type', 'wp-page'),
(1184, 144, '_elementor_version', '3.35.0'),
(1185, 144, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1186, 144, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1219, 147, '_elementor_page_settings', 'a:0:{}'),
(1220, 148, '_wp_page_template', 'elementor_header_footer'),
(1221, 148, '_elementor_edit_mode', 'builder'),
(1222, 148, '_elementor_template_type', 'wp-page'),
(1223, 148, '_elementor_version', '3.35.0'),
(1224, 148, '_elementor_pro_version', '3.35.0'),
(1225, 148, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1143, 140, '_elementor_page_settings', 'a:0:{}'),
(9551, 1001, '_wp_page_template', 'elementor_header_footer'),
(9531, 999, '_wp_page_template', 'elementor_header_footer'),
(9532, 999, '_elementor_edit_mode', 'builder'),
(9533, 999, '_elementor_template_type', 'wp-page'),
(9534, 999, '_elementor_version', '3.35.0'),
(9535, 999, '_elementor_pro_version', '3.35.0'),
(9536, 999, '_elementor_data', '[{\"id\":\"ec53c40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"5e394a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"2946f46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e871fc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f495119\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc173cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4428, 479, '_elementor_page_settings', 'a:0:{}'),
(4429, 480, '_wp_page_template', 'elementor_header_footer'),
(4431, 480, '_elementor_edit_mode', 'builder'),
(4432, 480, '_elementor_template_type', 'wp-page'),
(4433, 480, '_elementor_version', '3.35.0'),
(4434, 480, '_elementor_pro_version', '3.35.0'),
(4435, 480, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4436, 480, '_elementor_page_settings', 'a:0:{}'),
(4442, 481, '_elementor_pro_version', '3.35.0'),
(4443, 481, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10654, 1105, '_wp_page_template', 'elementor_header_footer'),
(10634, 1103, '_wp_page_template', 'elementor_header_footer'),
(10635, 1103, '_elementor_edit_mode', 'builder'),
(10636, 1103, '_elementor_template_type', 'wp-page'),
(10637, 1103, '_elementor_version', '3.35.0'),
(10638, 1103, '_elementor_pro_version', '3.35.0'),
(10639, 1103, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1146, 141, '_wp_page_template', 'elementor_header_footer'),
(1147, 141, '_elementor_edit_mode', 'builder'),
(1148, 141, '_elementor_template_type', 'wp-page'),
(1149, 141, '_elementor_version', '3.35.0'),
(1150, 141, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1151, 141, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1153, 141, '_elementor_page_settings', 'a:0:{}'),
(4355, 356, '_elementor_edit_mode', 'builder'),
(4356, 356, '_astra_content_layout_flag', 'disabled'),
(4378, 356, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4358, 356, 'ast-title-bar-display', 'disabled'),
(4359, 356, 'ast-featured-img', 'disabled'),
(4360, 356, '_elementor_template_type', 'wp-page'),
(4361, 356, '_elementor_version', '3.35.5'),
(4362, 356, '_elementor_pro_version', '3.35.1'),
(4364, 473, '_wp_page_template', 'elementor_header_footer'),
(4366, 473, '_elementor_edit_mode', 'builder'),
(4367, 473, '_elementor_template_type', 'wp-page'),
(4368, 473, '_elementor_version', '3.35.0'),
(4369, 473, '_elementor_pro_version', '3.35.0'),
(4370, 473, '_elementor_page_settings', 'a:0:{}'),
(4371, 474, '_wp_page_template', 'elementor_header_footer'),
(4373, 474, '_elementor_edit_mode', 'builder'),
(4374, 474, '_elementor_template_type', 'wp-page'),
(4375, 474, '_elementor_version', '3.35.0'),
(4376, 474, '_elementor_pro_version', '3.35.0'),
(4377, 474, '_elementor_page_settings', 'a:0:{}'),
(4437, 481, '_wp_page_template', 'elementor_header_footer'),
(4439, 481, '_elementor_edit_mode', 'builder'),
(4440, 481, '_elementor_template_type', 'wp-page'),
(4379, 475, '_wp_page_template', 'elementor_header_footer'),
(4381, 475, '_elementor_edit_mode', 'builder'),
(4382, 475, '_elementor_template_type', 'wp-page'),
(4383, 475, '_elementor_version', '3.35.0'),
(4384, 475, '_elementor_pro_version', '3.35.0'),
(4385, 475, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4441, 481, '_elementor_version', '3.35.0'),
(4421, 479, '_wp_page_template', 'elementor_header_footer'),
(4423, 479, '_elementor_edit_mode', 'builder'),
(4424, 479, '_elementor_template_type', 'wp-page'),
(4425, 479, '_elementor_version', '3.35.0'),
(4426, 479, '_elementor_pro_version', '3.35.0'),
(4427, 479, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4388, 354, '_elementor_edit_mode', 'builder'),
(4389, 354, '_astra_content_layout_flag', 'disabled'),
(4411, 354, '_elementor_data', '[{\"id\":\"ec53c40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"5e394a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"2946f46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e871fc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f495119\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc173cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4391, 354, 'ast-title-bar-display', 'disabled'),
(4392, 354, 'ast-featured-img', 'disabled'),
(4393, 354, '_elementor_template_type', 'wp-page'),
(4394, 354, '_elementor_version', '3.35.0'),
(4395, 354, '_elementor_pro_version', '3.35.0'),
(4397, 476, '_wp_page_template', 'elementor_header_footer'),
(4399, 476, '_elementor_edit_mode', 'builder'),
(4400, 476, '_elementor_template_type', 'wp-page'),
(4401, 476, '_elementor_version', '3.35.0'),
(4402, 476, '_elementor_pro_version', '3.35.0'),
(4403, 476, '_elementor_page_settings', 'a:0:{}'),
(4404, 477, '_wp_page_template', 'elementor_header_footer'),
(4406, 477, '_elementor_edit_mode', 'builder'),
(4407, 477, '_elementor_template_type', 'wp-page'),
(4408, 477, '_elementor_version', '3.35.0'),
(4409, 477, '_elementor_pro_version', '3.35.0'),
(4410, 477, '_elementor_page_settings', 'a:0:{}'),
(4412, 478, '_wp_page_template', 'elementor_header_footer'),
(4414, 478, '_elementor_edit_mode', 'builder'),
(4415, 478, '_elementor_template_type', 'wp-page'),
(4416, 478, '_elementor_version', '3.35.0'),
(4417, 478, '_elementor_pro_version', '3.35.0'),
(4418, 478, '_elementor_data', '[{\"id\":\"ec53c40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"5e394a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"2946f46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e871fc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f495119\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc173cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1157, 142, '_elementor_edit_mode', 'builder'),
(1158, 142, '_elementor_template_type', 'wp-page'),
(1159, 142, '_elementor_version', '3.35.0'),
(1160, 142, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1161, 142, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3482, 384, '_elementor_source', 'post'),
(3483, 384, '_elementor_edit_mode', 'builder'),
(3484, 384, '_elementor_template_type', 'footer'),
(3485, 384, '_elementor_version', '3.35.0'),
(3486, 384, '_elementor_pro_version', '3.35.0'),
(3487, 384, '_wp_page_template', 'default'),
(3488, 384, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"pp_display_conditions\":[{\"_id\":\"6dff497\"}]},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3516, 386, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3524, 388, '_elementor_source', 'post'),
(3525, 388, '_elementor_edit_mode', 'builder'),
(3526, 388, '_elementor_template_type', 'footer'),
(3527, 388, '_elementor_version', '3.35.0'),
(3528, 388, '_elementor_pro_version', '3.35.0'),
(3529, 388, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3530, 388, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(1228, 149, '_wp_page_template', 'elementor_header_footer'),
(1215, 147, '_elementor_version', '3.35.0'),
(1216, 147, '_elementor_pro_version', '3.35.0'),
(1217, 147, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1201, 146, '_wp_page_template', 'elementor_header_footer'),
(1202, 146, '_elementor_edit_mode', 'builder'),
(1188, 144, '_elementor_page_settings', 'a:0:{}'),
(4335, 470, '_elementor_page_settings', 'a:0:{}'),
(4336, 471, '_wp_page_template', 'elementor_header_footer'),
(4338, 471, '_elementor_edit_mode', 'builder'),
(4339, 471, '_elementor_template_type', 'wp-page'),
(4340, 471, '_elementor_version', '3.35.0'),
(4341, 471, '_elementor_pro_version', '3.35.0'),
(4342, 471, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4343, 471, '_elementor_page_settings', 'a:0:{}'),
(8764, 924, '_wp_page_template', 'elementor_header_footer'),
(8765, 924, '_elementor_edit_mode', 'builder'),
(8766, 924, '_elementor_template_type', 'wp-page'),
(8767, 924, '_elementor_version', '3.35.0'),
(4344, 472, '_wp_page_template', 'elementor_header_footer'),
(4346, 472, '_elementor_edit_mode', 'builder'),
(4347, 472, '_elementor_template_type', 'wp-page'),
(4348, 472, '_elementor_version', '3.35.0'),
(4349, 472, '_elementor_pro_version', '3.35.0'),
(4350, 472, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8768, 924, '_elementor_pro_version', '3.35.0'),
(8744, 922, '_wp_page_template', 'elementor_header_footer'),
(8745, 922, '_elementor_edit_mode', 'builder'),
(8746, 922, '_elementor_template_type', 'wp-page'),
(8747, 922, '_elementor_version', '3.35.0'),
(8748, 922, '_elementor_pro_version', '3.35.0'),
(8749, 922, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1203, 146, '_elementor_template_type', 'wp-page'),
(1204, 146, '_elementor_version', '3.35.0'),
(1205, 146, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1206, 146, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4310, 467, '_elementor_page_settings', 'a:0:{}'),
(4311, 468, '_wp_page_template', 'elementor_header_footer'),
(4313, 468, '_elementor_edit_mode', 'builder'),
(4314, 468, '_elementor_template_type', 'wp-page'),
(4315, 468, '_elementor_version', '3.35.0'),
(4316, 468, '_elementor_pro_version', '3.35.0'),
(4317, 468, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}]},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}]},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4318, 468, '_elementor_page_settings', 'a:0:{}'),
(4319, 469, '_wp_page_template', 'elementor_header_footer'),
(4321, 469, '_elementor_edit_mode', 'builder'),
(4322, 469, '_elementor_template_type', 'wp-page'),
(4323, 469, '_elementor_version', '3.35.0'),
(4324, 469, '_elementor_pro_version', '3.35.0'),
(4325, 469, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4328, 470, '_wp_page_template', 'elementor_header_footer'),
(4330, 470, '_elementor_edit_mode', 'builder'),
(4331, 470, '_elementor_template_type', 'wp-page'),
(4332, 470, '_elementor_version', '3.35.0'),
(4333, 470, '_elementor_pro_version', '3.35.0'),
(4334, 470, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(1191, 145, '_wp_page_template', 'elementor_header_footer'),
(1192, 145, '_elementor_edit_mode', 'builder'),
(1193, 145, '_elementor_template_type', 'wp-page'),
(1194, 145, '_elementor_version', '3.35.0'),
(1195, 145, '_elementor_pro_version', '3.35.0'),
(1196, 145, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1198, 145, '_elementor_page_settings', 'a:0:{}'),
(4270, 358, '_elementor_edit_mode', 'builder'),
(4271, 358, '_astra_content_layout_flag', 'disabled'),
(4293, 358, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.webp\",\"id\":1149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(4273, 358, 'ast-title-bar-display', 'disabled'),
(4274, 358, 'ast-featured-img', 'disabled'),
(4275, 358, '_elementor_template_type', 'wp-page'),
(4276, 358, '_elementor_version', '3.35.5'),
(4277, 358, '_elementor_pro_version', '3.35.1'),
(4279, 464, '_wp_page_template', 'elementor_header_footer'),
(6643, 699, '_elementor_page_settings', 'a:0:{}'),
(4281, 464, '_elementor_edit_mode', 'builder'),
(4282, 464, '_elementor_template_type', 'wp-page'),
(4283, 464, '_elementor_version', '3.35.0'),
(4284, 464, '_elementor_pro_version', '3.35.0'),
(4285, 464, '_elementor_page_settings', 'a:0:{}'),
(4286, 465, '_wp_page_template', 'elementor_header_footer'),
(4288, 465, '_elementor_edit_mode', 'builder'),
(4289, 465, '_elementor_template_type', 'wp-page'),
(4290, 465, '_elementor_version', '3.35.0'),
(4291, 465, '_elementor_pro_version', '3.35.0'),
(4292, 465, '_elementor_page_settings', 'a:0:{}'),
(4294, 466, '_wp_page_template', 'elementor_header_footer'),
(4296, 466, '_elementor_edit_mode', 'builder'),
(4297, 466, '_elementor_template_type', 'wp-page'),
(4298, 466, '_elementor_version', '3.35.0'),
(4299, 466, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4300, 466, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}]},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}]},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4303, 467, '_wp_page_template', 'elementor_header_footer'),
(4305, 467, '_elementor_edit_mode', 'builder'),
(4306, 467, '_elementor_template_type', 'wp-page'),
(4307, 467, '_elementor_version', '3.35.0'),
(4308, 467, '_elementor_pro_version', '3.35.0'),
(4309, 467, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}]},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}]},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3075, 340, '_wp_page_template', 'elementor_header_footer'),
(3076, 340, '_elementor_edit_mode', 'builder'),
(3077, 340, '_elementor_template_type', 'wp-page'),
(3078, 340, '_elementor_version', '3.35.0'),
(3079, 340, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3080, 340, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1227, 148, '_elementor_page_settings', 'a:0:{}'),
(1229, 149, '_elementor_edit_mode', 'builder'),
(1230, 149, '_elementor_template_type', 'wp-page'),
(1231, 149, '_elementor_version', '3.35.0'),
(1232, 149, '_elementor_pro_version', '3.35.0'),
(1233, 149, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1252, 153, '_wp_page_template', 'elementor_header_footer'),
(1253, 153, '_elementor_edit_mode', 'builder'),
(1254, 153, '_elementor_template_type', 'wp-page'),
(1255, 153, '_elementor_version', '3.35.0'),
(1256, 153, '_elementor_pro_version', '3.35.0'),
(1257, 153, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1268, 155, '_wp_page_template', 'elementor_header_footer'),
(1269, 155, '_elementor_edit_mode', 'builder'),
(1270, 155, '_elementor_template_type', 'wp-page'),
(1271, 155, '_elementor_version', '3.35.0'),
(1272, 155, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1273, 155, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1246, 151, '_wp_attached_file', '2026/02/right-top_15726559.svg'),
(1247, 151, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:218;s:5:\"width\";i:24;s:6:\"height\";i:24;}'),
(1249, 152, '_wp_attached_file', '2026/02/arrow-upper-right_7133068.svg'),
(1250, 152, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:495;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(1259, 153, '_elementor_page_settings', 'a:0:{}'),
(1260, 154, '_wp_page_template', 'elementor_header_footer'),
(1261, 154, '_elementor_edit_mode', 'builder'),
(1262, 154, '_elementor_template_type', 'wp-page'),
(1263, 154, '_elementor_version', '3.35.0'),
(1264, 154, '_elementor_pro_version', '3.35.0'),
(1265, 154, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Click here\",\"align\":\"right\",\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1267, 154, '_elementor_page_settings', 'a:0:{}'),
(1277, 156, '_wp_page_template', 'elementor_header_footer'),
(1278, 156, '_elementor_edit_mode', 'builder'),
(1279, 156, '_elementor_template_type', 'wp-page'),
(1280, 156, '_elementor_version', '3.35.0'),
(1281, 156, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1282, 156, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1284, 156, '_elementor_page_settings', 'a:0:{}'),
(1285, 157, '_wp_page_template', 'elementor_header_footer'),
(1286, 157, '_elementor_edit_mode', 'builder'),
(1287, 157, '_elementor_template_type', 'wp-page'),
(1288, 157, '_elementor_version', '3.35.0'),
(1289, 157, '_elementor_pro_version', '3.35.0'),
(1290, 157, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1292, 157, '_elementor_page_settings', 'a:0:{}'),
(1293, 158, '_wp_page_template', 'elementor_header_footer'),
(1294, 158, '_elementor_edit_mode', 'builder'),
(1295, 158, '_elementor_template_type', 'wp-page'),
(1296, 158, '_elementor_version', '3.35.0'),
(1297, 158, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1298, 158, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1302, 159, '_wp_page_template', 'elementor_header_footer'),
(1303, 159, '_elementor_edit_mode', 'builder'),
(1304, 159, '_elementor_template_type', 'wp-page'),
(1305, 159, '_elementor_version', '3.35.0'),
(1306, 159, '_elementor_pro_version', '3.35.0'),
(1307, 159, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1309, 159, '_elementor_page_settings', 'a:0:{}'),
(1310, 160, '_wp_page_template', 'elementor_header_footer'),
(1311, 160, '_elementor_edit_mode', 'builder'),
(1312, 160, '_elementor_template_type', 'wp-page'),
(1313, 160, '_elementor_version', '3.35.0'),
(1314, 160, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1315, 160, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1317, 160, '_elementor_page_settings', 'a:0:{}'),
(1318, 161, '_wp_page_template', 'elementor_header_footer'),
(1319, 161, '_elementor_edit_mode', 'builder'),
(1320, 161, '_elementor_template_type', 'wp-page'),
(1321, 161, '_elementor_version', '3.35.0'),
(1322, 161, '_elementor_pro_version', '3.35.0'),
(1323, 161, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1343, 164, '_wp_page_template', 'elementor_header_footer'),
(1327, 162, '_wp_page_template', 'elementor_header_footer'),
(1328, 162, '_elementor_edit_mode', 'builder'),
(1329, 162, '_elementor_template_type', 'wp-page'),
(1330, 162, '_elementor_version', '3.35.0'),
(1331, 162, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1332, 162, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1334, 162, '_elementor_page_settings', 'a:0:{}'),
(1335, 163, '_wp_page_template', 'elementor_header_footer'),
(1336, 163, '_elementor_edit_mode', 'builder'),
(1337, 163, '_elementor_template_type', 'wp-page'),
(1338, 163, '_elementor_version', '3.35.0'),
(1339, 163, '_elementor_pro_version', '3.35.0'),
(1340, 163, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1342, 163, '_elementor_page_settings', 'a:0:{}'),
(1344, 164, '_elementor_edit_mode', 'builder'),
(1345, 164, '_elementor_template_type', 'wp-page'),
(1346, 164, '_elementor_version', '3.35.0'),
(1347, 164, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1348, 164, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1352, 165, '_wp_page_template', 'elementor_header_footer'),
(1353, 165, '_elementor_edit_mode', 'builder'),
(1354, 165, '_elementor_template_type', 'wp-page'),
(1355, 165, '_elementor_version', '3.35.0'),
(1356, 165, '_elementor_pro_version', '3.35.0'),
(1357, 165, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1359, 165, '_elementor_page_settings', 'a:0:{}'),
(1360, 166, '_wp_page_template', 'elementor_header_footer'),
(1361, 166, '_elementor_edit_mode', 'builder'),
(1362, 166, '_elementor_template_type', 'wp-page'),
(1363, 166, '_elementor_version', '3.35.0'),
(1364, 166, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1365, 166, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1367, 166, '_elementor_page_settings', 'a:0:{}'),
(1368, 167, '_wp_page_template', 'elementor_header_footer'),
(1369, 167, '_elementor_edit_mode', 'builder'),
(1370, 167, '_elementor_template_type', 'wp-page'),
(1371, 167, '_elementor_version', '3.35.0'),
(1372, 167, '_elementor_pro_version', '3.35.0'),
(1373, 167, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1379, 168, '_wp_page_template', 'elementor_header_footer'),
(1380, 168, '_elementor_edit_mode', 'builder'),
(1381, 168, '_elementor_template_type', 'wp-page'),
(1382, 168, '_elementor_version', '3.35.0'),
(1383, 168, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1384, 168, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1434, 174, '_wp_page_template', 'elementor_header_footer'),
(1414, 172, '_wp_page_template', 'elementor_header_footer'),
(1415, 172, '_elementor_edit_mode', 'builder'),
(1416, 172, '_elementor_template_type', 'wp-page'),
(1417, 172, '_elementor_version', '3.35.0'),
(1418, 172, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1419, 172, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1452, 175, '_elementor_page_settings', 'a:0:{}'),
(1453, 176, '_wp_page_template', 'elementor_header_footer'),
(1454, 176, '_elementor_edit_mode', 'builder'),
(1455, 176, '_elementor_template_type', 'wp-page'),
(1456, 176, '_elementor_version', '3.35.0'),
(1457, 176, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1458, 176, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1386, 168, '_elementor_page_settings', 'a:0:{}'),
(7544, 795, '_elementor_page_settings', 'a:0:{}'),
(1389, 169, '_wp_page_template', 'elementor_header_footer'),
(1390, 169, '_elementor_edit_mode', 'builder'),
(1391, 169, '_elementor_template_type', 'wp-page'),
(1392, 169, '_elementor_version', '3.35.0'),
(1393, 169, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1394, 169, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]}},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1396, 169, '_elementor_page_settings', 'a:0:{}'),
(7547, 796, '_wp_page_template', 'elementor_header_footer'),
(7548, 796, '_elementor_edit_mode', 'builder'),
(7549, 796, '_elementor_template_type', 'wp-page'),
(7550, 796, '_elementor_version', '3.35.0'),
(7551, 796, '_elementor_pro_version', '3.35.0'),
(7552, 796, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4259, 463, '_elementor_edit_mode', 'builder'),
(4260, 463, '_elementor_template_type', 'wp-page'),
(4261, 463, '_elementor_version', '3.35.0'),
(4262, 463, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4263, 463, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1399, 170, '_wp_page_template', 'elementor_header_footer'),
(1400, 170, '_elementor_edit_mode', 'builder'),
(1401, 170, '_elementor_template_type', 'wp-page'),
(1402, 170, '_elementor_version', '3.35.0'),
(1403, 170, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1404, 170, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1445, 175, '_wp_page_template', 'elementor_header_footer'),
(1446, 175, '_elementor_edit_mode', 'builder'),
(1447, 175, '_elementor_template_type', 'wp-page'),
(1448, 175, '_elementor_version', '3.35.0'),
(1449, 175, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1450, 175, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1412, 171, '_wp_attached_file', '2026/02/team-ahome.jpg'),
(1413, 171, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:682;s:4:\"file\";s:22:\"2026/02/team-ahome.jpg\";s:8:\"filesize\";i:93671;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"team-ahome-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19808;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"team-ahome-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8797;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"team-ahome-768x524.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1421, 172, '_elementor_page_settings', 'a:0:{}'),
(4254, 462, '_elementor_page_settings', 'a:0:{}'),
(1424, 173, '_wp_page_template', 'elementor_header_footer'),
(1425, 173, '_elementor_edit_mode', 'builder'),
(1426, 173, '_elementor_template_type', 'wp-page'),
(1427, 173, '_elementor_version', '3.35.0'),
(1428, 173, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1429, 173, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1431, 173, '_elementor_page_settings', 'a:0:{}'),
(4244, 461, '_elementor_page_settings', 'a:0:{}'),
(7554, 796, '_elementor_page_settings', 'a:0:{}'),
(4247, 462, '_wp_page_template', 'elementor_header_footer'),
(4249, 462, '_elementor_edit_mode', 'builder'),
(4250, 462, '_elementor_template_type', 'wp-page'),
(4251, 462, '_elementor_version', '3.35.0'),
(4252, 462, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4253, 462, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1435, 174, '_elementor_edit_mode', 'builder'),
(1436, 174, '_elementor_template_type', 'wp-page'),
(1437, 174, '_elementor_version', '3.35.0'),
(1438, 174, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1439, 174, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3091, 342, '_wp_page_template', 'elementor_header_footer'),
(3092, 342, '_elementor_edit_mode', 'builder'),
(3093, 342, '_elementor_template_type', 'wp-page'),
(3094, 342, '_elementor_version', '3.35.0'),
(3095, 342, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3096, 342, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1460, 176, '_elementor_page_settings', 'a:0:{}'),
(1461, 177, '_wp_page_template', 'elementor_header_footer'),
(1462, 177, '_elementor_edit_mode', 'builder'),
(1463, 177, '_elementor_template_type', 'wp-page'),
(1464, 177, '_elementor_version', '3.35.0'),
(1465, 177, '_elementor_pro_version', '3.35.0'),
(1466, 177, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1517, 183, '_wp_page_template', 'elementor_header_footer'),
(1470, 178, '_wp_page_template', 'elementor_header_footer'),
(1471, 178, '_elementor_edit_mode', 'builder'),
(1472, 178, '_elementor_template_type', 'wp-page'),
(1473, 178, '_elementor_version', '3.35.0'),
(1474, 178, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1475, 178, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1477, 178, '_elementor_page_settings', 'a:0:{}'),
(1478, 179, '_wp_page_template', 'elementor_header_footer'),
(1479, 179, '_elementor_edit_mode', 'builder'),
(1480, 179, '_elementor_template_type', 'wp-page'),
(1481, 179, '_elementor_version', '3.35.0'),
(1482, 179, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1483, 179, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1485, 179, '_elementor_page_settings', 'a:0:{}'),
(1486, 180, '_wp_page_template', 'elementor_header_footer'),
(1487, 180, '_elementor_edit_mode', 'builder'),
(1488, 180, '_elementor_template_type', 'wp-page'),
(1489, 180, '_elementor_version', '3.35.0'),
(1490, 180, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1491, 180, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"overflow\":\"hidden\",\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1497, 181, '_wp_page_template', 'elementor_header_footer'),
(1498, 181, '_elementor_edit_mode', 'builder'),
(1499, 181, '_elementor_template_type', 'wp-page'),
(1500, 181, '_elementor_version', '3.35.0'),
(1501, 181, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1502, 181, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"overflow\":\"hidden\",\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1550, 186, '_wp_page_template', 'elementor_header_footer'),
(1530, 184, '_wp_page_template', 'elementor_header_footer'),
(1531, 184, '_elementor_edit_mode', 'builder'),
(1532, 184, '_elementor_template_type', 'wp-page'),
(1533, 184, '_elementor_version', '3.35.0'),
(1534, 184, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1535, 184, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1601, 190, '_elementor_page_settings', 'a:0:{}'),
(1602, 191, '_wp_page_template', 'elementor_header_footer'),
(1603, 191, '_elementor_edit_mode', 'builder'),
(1604, 191, '_elementor_template_type', 'wp-page'),
(1605, 191, '_elementor_version', '3.35.0'),
(1606, 191, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1607, 191, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1504, 181, '_elementor_page_settings', 'a:0:{}'),
(4666, 502, '_elementor_version', '3.35.0'),
(4667, 502, '_elementor_pro_version', '3.35.0'),
(4668, 502, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(8852, 933, '_wp_page_template', 'elementor_header_footer'),
(8853, 933, '_elementor_edit_mode', 'builder'),
(8854, 933, '_elementor_template_type', 'wp-page'),
(8855, 933, '_elementor_version', '3.35.0'),
(8856, 933, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8857, 933, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1507, 182, '_wp_page_template', 'elementor_header_footer'),
(1508, 182, '_elementor_edit_mode', 'builder'),
(1509, 182, '_elementor_template_type', 'wp-page'),
(1510, 182, '_elementor_version', '3.35.0'),
(1511, 182, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1512, 182, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"overflow\":\"hidden\",\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1514, 182, '_elementor_page_settings', 'a:0:{}'),
(6649, 700, '_elementor_template_type', 'wp-page'),
(4664, 502, '_elementor_edit_mode', 'builder'),
(4665, 502, '_elementor_template_type', 'wp-page'),
(1518, 183, '_elementor_edit_mode', 'builder'),
(1519, 183, '_elementor_template_type', 'wp-page'),
(1520, 183, '_elementor_version', '3.35.0'),
(1521, 183, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1522, 183, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3082, 340, '_elementor_page_settings', 'a:0:{}'),
(3083, 341, '_wp_page_template', 'elementor_header_footer'),
(3084, 341, '_elementor_edit_mode', 'builder'),
(3085, 341, '_elementor_template_type', 'wp-page'),
(3086, 341, '_elementor_version', '3.35.0'),
(3087, 341, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3088, 341, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1583, 189, '_wp_page_template', 'elementor_header_footer'),
(1563, 187, '_wp_page_template', 'elementor_header_footer'),
(1564, 187, '_elementor_edit_mode', 'builder'),
(1565, 187, '_elementor_template_type', 'wp-page'),
(1566, 187, '_elementor_version', '3.35.0'),
(1567, 187, '_elementor_pro_version', '3.35.0'),
(1568, 187, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1537, 184, '_elementor_page_settings', 'a:0:{}'),
(6657, 701, '_wp_page_template', 'elementor_header_footer'),
(6658, 701, '_elementor_edit_mode', 'builder'),
(4662, 502, '_wp_page_template', 'elementor_header_footer'),
(7557, 797, '_wp_page_template', 'elementor_header_footer'),
(7558, 797, '_elementor_edit_mode', 'builder'),
(7559, 797, '_elementor_template_type', 'wp-page'),
(7560, 797, '_elementor_version', '3.35.0'),
(7561, 797, '_elementor_pro_version', '3.35.0'),
(7562, 797, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4226, 460, '_elementor_edit_mode', 'builder'),
(4227, 460, '_elementor_template_type', 'wp-page'),
(4228, 460, '_elementor_version', '3.35.0'),
(4229, 460, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4230, 460, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1540, 185, '_wp_page_template', 'elementor_header_footer'),
(1541, 185, '_elementor_edit_mode', 'builder'),
(1542, 185, '_elementor_template_type', 'wp-page'),
(1543, 185, '_elementor_version', '3.35.0'),
(1544, 185, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1545, 185, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"html_tag\":\"a\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1547, 185, '_elementor_page_settings', 'a:0:{}'),
(6659, 701, '_elementor_template_type', 'wp-page'),
(6660, 701, '_elementor_version', '3.35.0'),
(4216, 459, '_elementor_edit_mode', 'builder'),
(4217, 459, '_elementor_template_type', 'wp-page'),
(4218, 459, '_elementor_version', '3.35.0'),
(4219, 459, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4220, 459, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4221, 459, '_elementor_page_settings', 'a:0:{}'),
(1551, 186, '_elementor_edit_mode', 'builder'),
(1552, 186, '_elementor_template_type', 'wp-page'),
(1553, 186, '_elementor_version', '3.35.0'),
(1554, 186, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1555, 186, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1594, 190, '_wp_page_template', 'elementor_header_footer'),
(1595, 190, '_elementor_edit_mode', 'builder'),
(1596, 190, '_elementor_template_type', 'wp-page'),
(1597, 190, '_elementor_version', '3.35.0'),
(1598, 190, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1599, 190, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1570, 187, '_elementor_page_settings', 'a:0:{}'),
(6661, 701, '_elementor_pro_version', '3.35.0'),
(6662, 701, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4211, 458, '_elementor_page_settings', 'a:0:{}'),
(4214, 459, '_wp_page_template', 'elementor_header_footer'),
(1573, 188, '_wp_page_template', 'elementor_header_footer'),
(1574, 188, '_elementor_edit_mode', 'builder'),
(1575, 188, '_elementor_template_type', 'wp-page'),
(1576, 188, '_elementor_version', '3.35.0'),
(1577, 188, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1578, 188, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1580, 188, '_elementor_page_settings', 'a:0:{}'),
(4257, 463, '_wp_page_template', 'elementor_header_footer'),
(4237, 461, '_wp_page_template', 'elementor_header_footer'),
(4239, 461, '_elementor_edit_mode', 'builder'),
(4240, 461, '_elementor_template_type', 'wp-page'),
(4241, 461, '_elementor_version', '3.35.0'),
(4242, 461, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4243, 461, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7630, 805, '_elementor_template_type', 'wp-page'),
(7631, 805, '_elementor_version', '3.35.0'),
(7632, 805, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7633, 805, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(11195, 1149, '_wp_attached_file', '2026/02/Transportation-aa.webp'),
(11196, 1149, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:30:\"2026/02/Transportation-aa.webp\";s:8:\"filesize\";i:84094;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Transportation-aa-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Transportation-aa-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Transportation-aa-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1584, 189, '_elementor_edit_mode', 'builder'),
(1585, 189, '_elementor_template_type', 'wp-page'),
(1586, 189, '_elementor_version', '3.35.0'),
(1587, 189, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1588, 189, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3090, 341, '_elementor_page_settings', 'a:0:{}'),
(3100, 343, '_wp_page_template', 'elementor_header_footer'),
(3101, 343, '_elementor_edit_mode', 'builder'),
(3102, 343, '_elementor_template_type', 'wp-page'),
(3103, 343, '_elementor_version', '3.35.0'),
(3104, 343, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3105, 343, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1609, 191, '_elementor_page_settings', 'a:0:{}'),
(1610, 192, '_wp_page_template', 'elementor_header_footer'),
(1611, 192, '_elementor_edit_mode', 'builder'),
(1612, 192, '_elementor_template_type', 'wp-page'),
(1613, 192, '_elementor_version', '3.35.0'),
(1614, 192, '_elementor_pro_version', '3.35.0'),
(1615, 192, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1641, 195, '_wp_page_template', 'elementor_header_footer'),
(1621, 193, '_wp_page_template', 'elementor_header_footer'),
(1622, 193, '_elementor_edit_mode', 'builder'),
(1623, 193, '_elementor_template_type', 'wp-page'),
(1624, 193, '_elementor_version', '3.35.0'),
(1625, 193, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1626, 193, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1674, 198, '_wp_page_template', 'elementor_header_footer'),
(1654, 196, '_wp_page_template', 'elementor_header_footer'),
(1655, 196, '_elementor_edit_mode', 'builder'),
(1656, 196, '_elementor_template_type', 'wp-page'),
(1657, 196, '_elementor_version', '3.35.0'),
(1658, 196, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1659, 196, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1800, 213, '_wp_attached_file', '2026/02/69637-1.jpg'),
(1801, 213, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:19:\"2026/02/69637-1.jpg\";s:8:\"filesize\";i:85973;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"69637-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19408;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"69637-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8842;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"69637-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81379;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1809, 214, '_elementor_page_settings', 'a:0:{}'),
(1810, 215, '_wp_page_template', 'elementor_header_footer'),
(1811, 215, '_elementor_edit_mode', 'builder'),
(1812, 215, '_elementor_template_type', 'wp-page'),
(1813, 215, '_elementor_version', '3.35.0'),
(1814, 215, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1815, 215, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1628, 193, '_elementor_page_settings', 'a:0:{}'),
(4224, 460, '_wp_page_template', 'elementor_header_footer'),
(4204, 458, '_wp_page_template', 'elementor_header_footer'),
(4206, 458, '_elementor_edit_mode', 'builder'),
(4207, 458, '_elementor_template_type', 'wp-page'),
(4208, 458, '_elementor_version', '3.35.0'),
(4209, 458, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4210, 458, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(7592, 801, '_wp_page_template', 'elementor_header_footer'),
(7572, 799, '_wp_page_template', 'elementor_header_footer'),
(7573, 799, '_elementor_edit_mode', 'builder'),
(7574, 799, '_elementor_template_type', 'wp-page'),
(7575, 799, '_elementor_version', '3.35.0'),
(7576, 799, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7577, 799, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7653, 808, '_wp_page_template', 'elementor_header_footer'),
(7628, 805, '_wp_page_template', 'elementor_header_footer'),
(7629, 805, '_elementor_edit_mode', 'builder'),
(1631, 194, '_wp_page_template', 'elementor_header_footer'),
(1632, 194, '_elementor_edit_mode', 'builder'),
(1633, 194, '_elementor_template_type', 'wp-page'),
(1634, 194, '_elementor_version', '3.35.0'),
(1635, 194, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1636, 194, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1638, 194, '_elementor_page_settings', 'a:0:{}'),
(8870, 935, '_wp_page_template', 'elementor_header_footer'),
(4191, 456, '_wp_page_template', 'elementor_header_footer'),
(4193, 456, '_elementor_edit_mode', 'builder'),
(4194, 456, '_elementor_template_type', 'wp-page'),
(4195, 456, '_elementor_version', '3.35.0'),
(4196, 456, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4197, 456, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4178, 454, '_elementor_edit_mode', 'builder'),
(4179, 454, '_elementor_template_type', 'wp-page'),
(4180, 454, '_elementor_version', '3.35.0'),
(4181, 454, '_elementor_pro_version', '3.35.0'),
(4182, 454, '_elementor_page_settings', 'a:0:{}'),
(4183, 455, '_wp_page_template', 'elementor_header_footer'),
(4185, 455, '_elementor_edit_mode', 'builder'),
(4186, 455, '_elementor_template_type', 'wp-page'),
(4187, 455, '_elementor_version', '3.35.0'),
(4188, 455, '_elementor_pro_version', '3.35.0'),
(4189, 455, '_elementor_page_settings', 'a:0:{}'),
(1642, 195, '_elementor_edit_mode', 'builder'),
(1643, 195, '_elementor_template_type', 'wp-page'),
(1644, 195, '_elementor_version', '3.35.0'),
(1645, 195, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1646, 195, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3107, 343, '_elementor_page_settings', 'a:0:{}'),
(3108, 344, '_wp_page_template', 'elementor_header_footer'),
(3109, 344, '_elementor_edit_mode', 'builder'),
(3110, 344, '_elementor_template_type', 'wp-page'),
(3111, 344, '_elementor_version', '3.35.0'),
(3112, 344, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3113, 344, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1720, 204, '_wp_page_template', 'elementor_header_footer'),
(1702, 202, '_wp_page_template', 'elementor_header_footer'),
(1703, 202, '_elementor_edit_mode', 'builder'),
(1704, 202, '_elementor_template_type', 'wp-page'),
(1705, 202, '_elementor_version', '3.35.0'),
(1706, 202, '_elementor_pro_version', '3.35.0'),
(1707, 202, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1661, 196, '_elementor_page_settings', 'a:0:{}'),
(5718, 616, '_wp_page_template', 'elementor_header_footer'),
(5719, 616, '_elementor_edit_mode', 'builder'),
(5720, 616, '_elementor_template_type', 'wp-page'),
(5721, 616, '_elementor_version', '3.35.0'),
(5722, 616, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5723, 616, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7292, 767, '_wp_page_template', 'elementor_header_footer'),
(7293, 767, '_elementor_edit_mode', 'builder'),
(7294, 767, '_elementor_template_type', 'wp-page'),
(7295, 767, '_elementor_version', '3.35.0'),
(7296, 767, '_elementor_pro_version', '3.35.0'),
(7297, 767, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(1664, 197, '_wp_page_template', 'elementor_header_footer'),
(1665, 197, '_elementor_edit_mode', 'builder'),
(1666, 197, '_elementor_template_type', 'wp-page'),
(1667, 197, '_elementor_version', '3.35.0'),
(1668, 197, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1669, 197, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1300,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1671, 197, '_elementor_page_settings', 'a:0:{}'),
(5685, 613, '_wp_page_template', 'elementor_header_footer'),
(5686, 613, '_elementor_edit_mode', 'builder'),
(5687, 613, '_elementor_template_type', 'wp-page'),
(5688, 613, '_elementor_version', '3.35.0'),
(5689, 613, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5690, 613, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4153, 16, '_elementor_edit_mode', 'builder'),
(4154, 16, '_astra_content_layout_flag', 'disabled'),
(4190, 16, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4156, 16, 'ast-title-bar-display', 'disabled'),
(4157, 16, 'ast-featured-img', 'disabled'),
(4158, 16, '_elementor_template_type', 'wp-page'),
(4159, 16, '_elementor_version', '3.35.5'),
(4160, 16, '_elementor_pro_version', '3.35.1'),
(4176, 454, '_wp_page_template', 'elementor_header_footer'),
(5725, 616, '_elementor_page_settings', 'a:0:{}'),
(5726, 617, '_wp_page_template', 'elementor_header_footer'),
(5727, 617, '_elementor_edit_mode', 'builder'),
(5728, 617, '_elementor_template_type', 'wp-page'),
(5729, 617, '_elementor_version', '3.35.0'),
(5730, 617, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5731, 617, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1675, 198, '_elementor_edit_mode', 'builder'),
(1676, 198, '_elementor_template_type', 'wp-page'),
(1677, 198, '_elementor_version', '3.35.0'),
(1678, 198, '_elementor_pro_version', '3.35.0'),
(1679, 198, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1754, 208, '_wp_page_template', 'elementor_header_footer'),
(1734, 206, '_wp_page_template', 'elementor_header_footer'),
(1735, 206, '_elementor_edit_mode', 'builder'),
(1736, 206, '_elementor_template_type', 'wp-page'),
(1737, 206, '_elementor_version', '3.35.0'),
(1738, 206, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1739, 206, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1724, 204, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1725, 204, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1721, 204, '_elementor_edit_mode', 'builder'),
(1722, 204, '_elementor_template_type', 'wp-page'),
(1723, 204, '_elementor_version', '3.35.0'),
(1700, 201, '_wp_attached_file', '2026/02/team-abc.jpg'),
(1701, 201, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2026/02/team-abc.jpg\";s:8:\"filesize\";i:93934;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"team-abc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21262;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"team-abc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9459;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"team-abc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88927;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1709, 202, '_elementor_page_settings', 'a:0:{}'),
(1711, 203, '_wp_page_template', 'elementor_header_footer'),
(1712, 203, '_elementor_edit_mode', 'builder'),
(1713, 203, '_elementor_template_type', 'wp-page'),
(1714, 203, '_elementor_version', '3.35.0'),
(1715, 203, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1716, 203, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ahome.jpg\",\"id\":171,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1718, 203, '_elementor_page_settings', 'a:0:{}'),
(10823, 1119, '_elementor_version', '3.35.0'),
(4143, 451, '_elementor_page_settings', 'a:0:{}'),
(4144, 452, '_wp_page_template', 'elementor_header_footer'),
(4145, 452, '_elementor_edit_mode', 'builder'),
(4146, 452, '_elementor_template_type', 'wp-page'),
(4147, 452, '_elementor_version', '3.35.0'),
(4148, 452, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4149, 452, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7612, 803, '_wp_page_template', 'elementor_header_footer'),
(7613, 803, '_elementor_edit_mode', 'builder'),
(7614, 803, '_elementor_template_type', 'wp-page'),
(7615, 803, '_elementor_version', '3.35.0'),
(7616, 803, '_elementor_pro_version', '3.35.0'),
(7617, 803, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7570, 798, '_wp_attached_file', '2026/02/Our-Approach-to-Care-a.jpg'),
(7571, 798, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:34:\"2026/02/Our-Approach-to-Care-a.jpg\";s:8:\"filesize\";i:134798;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Our-Approach-to-Care-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18141;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Our-Approach-to-Care-a-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117745;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Our-Approach-to-Care-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8246;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Our-Approach-to-Care-a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76157;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1789, 212, '_wp_page_template', 'elementor_header_footer'),
(1769, 210, '_wp_page_template', 'elementor_header_footer'),
(1770, 210, '_elementor_edit_mode', 'builder'),
(1771, 210, '_elementor_template_type', 'wp-page'),
(1772, 210, '_elementor_version', '3.35.0'),
(1773, 210, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1774, 210, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1732, 205, '_wp_attached_file', '2026/02/Care-Plans-and-Treatments-aa.jpg'),
(1733, 205, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:40:\"2026/02/Care-Plans-and-Treatments-aa.jpg\";s:8:\"filesize\";i:82871;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Care-Plans-and-Treatments-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Care-Plans-and-Treatments-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8476;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Care-Plans-and-Treatments-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78606;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1741, 206, '_elementor_page_settings', 'a:0:{}'),
(10821, 1119, '_elementor_edit_mode', 'builder'),
(10089, 1051, '_wp_page_template', 'elementor_header_footer'),
(10090, 1051, '_elementor_edit_mode', 'builder'),
(10091, 1051, '_elementor_template_type', 'wp-page'),
(10092, 1051, '_elementor_version', '3.35.0'),
(10093, 1051, '_elementor_pro_version', '3.35.0'),
(10094, 1051, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6670, 693, '_elementor_edit_mode', 'builder'),
(6671, 693, '_astra_content_layout_flag', 'disabled');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6731, 693, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-aa.jpg\",\"id\":959,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6673, 693, 'ast-title-bar-display', 'disabled'),
(6674, 693, 'ast-featured-img', 'disabled'),
(6675, 693, '_elementor_template_type', 'wp-page'),
(6676, 693, '_elementor_version', '3.35.0'),
(6677, 693, '_elementor_pro_version', '3.35.0'),
(1744, 207, '_wp_page_template', 'elementor_header_footer'),
(1745, 207, '_elementor_edit_mode', 'builder'),
(1746, 207, '_elementor_template_type', 'wp-page'),
(1747, 207, '_elementor_version', '3.35.0'),
(1748, 207, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1749, 207, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1751, 207, '_elementor_page_settings', 'a:0:{}'),
(7108, 748, '_wp_page_template', 'elementor_header_footer'),
(7109, 748, '_elementor_edit_mode', 'builder'),
(7110, 748, '_elementor_template_type', 'wp-page'),
(7111, 748, '_elementor_version', '3.35.0'),
(7112, 748, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7113, 748, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9767, 1019, '_wp_page_template', 'elementor_header_footer'),
(9768, 1019, '_elementor_edit_mode', 'builder'),
(9769, 1019, '_elementor_template_type', 'wp-page'),
(9770, 1019, '_elementor_version', '3.35.0'),
(9771, 1019, '_elementor_pro_version', '3.35.0'),
(9772, 1019, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10958, 1127, '_wp_attached_file', '2026/02/team-ab-1.webp'),
(10959, 1127, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2026/02/team-ab-1.webp\";s:8:\"filesize\";i:67650;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"team-ab-1-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"team-ab-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"team-ab-1-768x614.webp\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:67606;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1755, 208, '_elementor_edit_mode', 'builder'),
(1756, 208, '_elementor_template_type', 'wp-page'),
(1757, 208, '_elementor_version', '3.35.0'),
(1758, 208, '_elementor_pro_version', '3.35.0'),
(1759, 208, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3115, 344, '_elementor_page_settings', 'a:0:{}'),
(3116, 345, '_wp_page_template', 'elementor_header_footer'),
(3117, 345, '_elementor_edit_mode', 'builder'),
(3118, 345, '_elementor_template_type', 'wp-page'),
(3119, 345, '_elementor_version', '3.35.0'),
(3120, 345, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3121, 345, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1818, 216, '_wp_page_template', 'elementor_header_footer'),
(1802, 214, '_wp_page_template', 'elementor_header_footer'),
(1803, 214, '_elementor_edit_mode', 'builder'),
(1804, 214, '_elementor_template_type', 'wp-page'),
(1805, 214, '_elementor_version', '3.35.0'),
(1806, 214, '_elementor_pro_version', '3.35.0'),
(1807, 214, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1767, 209, '_wp_attached_file', '2026/02/Daily-Health-Care-Monitoring-aa.jpg'),
(1768, 209, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2026/02/Daily-Health-Care-Monitoring-aa.jpg\";s:8:\"filesize\";i:74873;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17848;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8418;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72918;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1776, 210, '_elementor_page_settings', 'a:0:{}'),
(4115, 449, '_wp_page_template', 'elementor_header_footer'),
(4116, 449, '_elementor_edit_mode', 'builder'),
(4117, 449, '_elementor_template_type', 'wp-page'),
(4118, 449, '_elementor_version', '3.35.0'),
(4119, 449, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4120, 449, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1779, 211, '_wp_page_template', 'elementor_header_footer'),
(1780, 211, '_elementor_edit_mode', 'builder'),
(1781, 211, '_elementor_template_type', 'wp-page'),
(1782, 211, '_elementor_version', '3.35.0'),
(1783, 211, '_elementor_pro_version', '3.35.0'),
(1784, 211, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1786, 211, '_elementor_page_settings', 'a:0:{}'),
(6687, 702, '_elementor_page_settings', 'a:0:{}'),
(1790, 212, '_elementor_edit_mode', 'builder'),
(1791, 212, '_elementor_template_type', 'wp-page'),
(1792, 212, '_elementor_version', '3.35.0'),
(1793, 212, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1794, 212, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3293, 368, '_wp_page_template', 'elementor_header_footer'),
(3294, 368, '_elementor_edit_mode', 'builder'),
(3295, 368, '_elementor_template_type', 'wp-page'),
(3296, 368, '_elementor_version', '3.35.0'),
(3297, 368, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3298, 368, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1817, 215, '_elementor_page_settings', 'a:0:{}'),
(1819, 216, '_elementor_edit_mode', 'builder'),
(1820, 216, '_elementor_template_type', 'wp-page'),
(1821, 216, '_elementor_version', '3.35.0'),
(1822, 216, '_elementor_pro_version', '3.35.0'),
(1823, 216, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1851, 220, '_wp_page_template', 'elementor_header_footer'),
(1831, 218, '_wp_page_template', 'elementor_header_footer'),
(1832, 218, '_elementor_edit_mode', 'builder'),
(1833, 218, '_elementor_template_type', 'wp-page'),
(1834, 218, '_elementor_version', '3.35.0'),
(1835, 218, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1836, 218, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1897, 225, '_wp_attached_file', '2026/02/2148934332-1.jpg'),
(1898, 225, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:24:\"2026/02/2148934332-1.jpg\";s:8:\"filesize\";i:77497;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"2148934332-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16338;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"2148934332-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8345;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"2148934332-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71797;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1886, 224, '_wp_page_template', 'elementor_header_footer'),
(1866, 222, '_wp_page_template', 'elementor_header_footer'),
(1867, 222, '_elementor_edit_mode', 'builder'),
(1868, 222, '_elementor_template_type', 'wp-page'),
(1869, 222, '_elementor_version', '3.35.0'),
(1870, 222, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1871, 222, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1906, 226, '_elementor_page_settings', 'a:0:{}'),
(1907, 227, '_wp_page_template', 'elementor_header_footer'),
(1908, 227, '_elementor_edit_mode', 'builder'),
(1909, 227, '_elementor_template_type', 'wp-page'),
(1910, 227, '_elementor_version', '3.35.0'),
(1911, 227, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1912, 227, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1829, 217, '_wp_attached_file', '2026/02/Medication-Reminders-aa.jpg'),
(1830, 217, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:35:\"2026/02/Medication-Reminders-aa.jpg\";s:8:\"filesize\";i:40177;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Medication-Reminders-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Medication-Reminders-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5522;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Medication-Reminders-aa-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1838, 218, '_elementor_page_settings', 'a:0:{}'),
(4112, 448, '_elementor_page_settings', 'a:0:{}'),
(1841, 219, '_wp_page_template', 'elementor_header_footer'),
(1842, 219, '_elementor_edit_mode', 'builder'),
(1843, 219, '_elementor_template_type', 'wp-page'),
(1844, 219, '_elementor_version', '3.35.0'),
(1845, 219, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1846, 219, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1848, 219, '_elementor_page_settings', 'a:0:{}'),
(4105, 448, '_wp_page_template', 'elementor_header_footer'),
(4106, 448, '_elementor_edit_mode', 'builder'),
(4107, 448, '_elementor_template_type', 'wp-page'),
(4108, 448, '_elementor_version', '3.35.0'),
(4109, 448, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4110, 448, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1852, 220, '_elementor_edit_mode', 'builder'),
(1853, 220, '_elementor_template_type', 'wp-page'),
(1854, 220, '_elementor_version', '3.35.0'),
(1855, 220, '_elementor_pro_version', '3.35.0'),
(1856, 220, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4135, 450, '_elementor_page_settings', 'a:0:{}'),
(4136, 451, '_wp_page_template', 'elementor_header_footer'),
(4137, 451, '_elementor_edit_mode', 'builder'),
(4138, 451, '_elementor_template_type', 'wp-page'),
(4139, 451, '_elementor_version', '3.35.0'),
(4140, 451, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4141, 451, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1899, 226, '_wp_page_template', 'elementor_header_footer'),
(1900, 226, '_elementor_edit_mode', 'builder'),
(1901, 226, '_elementor_template_type', 'wp-page'),
(1902, 226, '_elementor_version', '3.35.0'),
(1903, 226, '_elementor_pro_version', '3.35.0'),
(1904, 226, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1864, 221, '_wp_attached_file', '2026/02/Nursing-Dietary-Counseling-aa.jpg'),
(1865, 221, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:41:\"2026/02/Nursing-Dietary-Counseling-aa.jpg\";s:8:\"filesize\";i:58173;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Nursing-Dietary-Counseling-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Nursing-Dietary-Counseling-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7473;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Nursing-Dietary-Counseling-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55504;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1873, 222, '_elementor_page_settings', 'a:0:{}'),
(10824, 1119, '_elementor_pro_version', '3.35.0'),
(10825, 1119, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Communities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(11033, 1135, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1876, 223, '_wp_page_template', 'elementor_header_footer'),
(1877, 223, '_elementor_edit_mode', 'builder'),
(1878, 223, '_elementor_template_type', 'wp-page'),
(1879, 223, '_elementor_version', '3.35.0'),
(1880, 223, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1881, 223, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(1883, 223, '_elementor_page_settings', 'a:0:{}'),
(4102, 447, '_elementor_page_settings', 'a:0:{}'),
(7579, 799, '_elementor_page_settings', 'a:0:{}'),
(1887, 224, '_elementor_edit_mode', 'builder'),
(1888, 224, '_elementor_template_type', 'wp-page'),
(1889, 224, '_elementor_version', '3.35.0'),
(1890, 224, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1891, 224, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(3326, 371, '_wp_page_template', 'elementor_header_footer'),
(3327, 371, '_elementor_edit_mode', 'builder'),
(3328, 371, '_elementor_template_type', 'wp-page'),
(3329, 371, '_elementor_version', '3.35.0'),
(3330, 371, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3331, 371, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3127, 346, '_edit_last', '1'),
(3128, 346, '_edit_lock', '1771051484:1'),
(3129, 346, '_wp_page_template', 'elementor_header_footer'),
(3130, 346, 'site-sidebar-layout', 'no-sidebar'),
(3135, 346, 'theme-transparent-header-meta', 'default'),
(3132, 346, 'ast-site-content-layout', 'full-width-container'),
(3133, 346, 'site-content-style', 'default'),
(3134, 346, 'site-sidebar-style', 'default'),
(9800, 346, 'astra-migrate-meta-layouts', 'set'),
(3137, 348, '_edit_last', '1'),
(3138, 348, '_edit_lock', '1771062256:1'),
(3139, 348, '_wp_page_template', 'elementor_header_footer'),
(3140, 348, 'site-sidebar-layout', 'no-sidebar'),
(3145, 348, 'theme-transparent-header-meta', 'default'),
(3142, 348, 'ast-site-content-layout', 'full-width-container'),
(3143, 348, 'site-content-style', 'default'),
(3144, 348, 'site-sidebar-style', 'default'),
(3146, 348, 'astra-migrate-meta-layouts', 'set'),
(3147, 350, '_edit_last', '1'),
(3148, 350, '_edit_lock', '1770276870:1'),
(3149, 350, '_wp_page_template', 'elementor_header_footer'),
(3150, 350, 'site-sidebar-layout', 'no-sidebar'),
(3155, 350, 'theme-transparent-header-meta', 'default'),
(3152, 350, 'ast-site-content-layout', 'full-width-container'),
(3153, 350, 'site-content-style', 'default'),
(3154, 350, 'site-sidebar-style', 'default'),
(3156, 350, 'astra-migrate-meta-layouts', 'set'),
(3157, 352, '_edit_last', '1'),
(3158, 352, '_edit_lock', '1770276950:1'),
(3159, 352, '_wp_page_template', 'elementor_header_footer'),
(3160, 352, 'site-sidebar-layout', 'no-sidebar'),
(3165, 352, 'theme-transparent-header-meta', 'default'),
(3162, 352, 'ast-site-content-layout', 'full-width-container'),
(3163, 352, 'site-content-style', 'default'),
(3164, 352, 'site-sidebar-style', 'default'),
(3166, 352, 'astra-migrate-meta-layouts', 'set'),
(3167, 354, '_edit_last', '1'),
(3168, 354, '_edit_lock', '1770635105:1'),
(3169, 354, '_wp_page_template', 'elementor_header_footer'),
(3170, 354, 'site-sidebar-layout', 'no-sidebar'),
(3175, 354, 'theme-transparent-header-meta', 'default'),
(3172, 354, 'ast-site-content-layout', 'full-width-container'),
(3173, 354, 'site-content-style', 'default'),
(3174, 354, 'site-sidebar-style', 'default'),
(3176, 354, 'astra-migrate-meta-layouts', 'set'),
(3177, 356, '_edit_last', '1'),
(3178, 356, '_edit_lock', '1771485552:1'),
(3179, 356, '_wp_page_template', 'elementor_header_footer'),
(3180, 356, 'site-sidebar-layout', 'no-sidebar'),
(3185, 356, 'theme-transparent-header-meta', 'default'),
(3182, 356, 'ast-site-content-layout', 'full-width-container'),
(3183, 356, 'site-content-style', 'default'),
(3184, 356, 'site-sidebar-style', 'default'),
(3186, 356, 'astra-migrate-meta-layouts', 'set'),
(3187, 358, '_edit_last', '1'),
(3188, 358, '_edit_lock', '1771486633:1'),
(3189, 358, '_wp_page_template', 'elementor_header_footer'),
(3190, 358, 'site-sidebar-layout', 'no-sidebar'),
(3195, 358, 'theme-transparent-header-meta', 'default'),
(3192, 358, 'ast-site-content-layout', 'full-width-container'),
(3193, 358, 'site-content-style', 'default'),
(3194, 358, 'site-sidebar-style', 'default'),
(3196, 358, 'astra-migrate-meta-layouts', 'set'),
(3197, 360, '_menu_item_type', 'post_type'),
(3198, 360, '_menu_item_menu_item_parent', '36'),
(3199, 360, '_menu_item_object_id', '358'),
(3200, 360, '_menu_item_object', 'page'),
(3201, 360, '_menu_item_target', ''),
(3202, 360, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3203, 360, '_menu_item_xfn', ''),
(3204, 360, '_menu_item_url', ''),
(3263, 36, '_wp_old_date', '2026-02-02'),
(3206, 361, '_menu_item_type', 'post_type'),
(3207, 361, '_menu_item_menu_item_parent', '38'),
(3208, 361, '_menu_item_object_id', '356'),
(3209, 361, '_menu_item_object', 'page'),
(3210, 361, '_menu_item_target', ''),
(3211, 361, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3212, 361, '_menu_item_xfn', ''),
(3213, 361, '_menu_item_url', ''),
(3264, 37, '_wp_old_date', '2026-02-02'),
(3215, 362, '_menu_item_type', 'post_type'),
(3216, 362, '_menu_item_menu_item_parent', '38'),
(3217, 362, '_menu_item_object_id', '354'),
(3218, 362, '_menu_item_object', 'page'),
(3219, 362, '_menu_item_target', ''),
(3220, 362, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3221, 362, '_menu_item_xfn', ''),
(3222, 362, '_menu_item_url', ''),
(3265, 33, '_wp_old_date', '2026-02-02'),
(3224, 363, '_menu_item_type', 'post_type'),
(3225, 363, '_menu_item_menu_item_parent', '38'),
(3226, 363, '_menu_item_object_id', '352'),
(3227, 363, '_menu_item_object', 'page'),
(3228, 363, '_menu_item_target', ''),
(3229, 363, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3230, 363, '_menu_item_xfn', ''),
(3231, 363, '_menu_item_url', ''),
(3266, 32, '_wp_old_date', '2026-02-02'),
(3233, 364, '_menu_item_type', 'post_type'),
(3234, 364, '_menu_item_menu_item_parent', '38'),
(3235, 364, '_menu_item_object_id', '350'),
(3236, 364, '_menu_item_object', 'page'),
(3237, 364, '_menu_item_target', ''),
(3238, 364, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3239, 364, '_menu_item_xfn', ''),
(3240, 364, '_menu_item_url', ''),
(3267, 34, '_wp_old_date', '2026-02-02'),
(3242, 365, '_menu_item_type', 'post_type'),
(3243, 365, '_menu_item_menu_item_parent', '38'),
(3244, 365, '_menu_item_object_id', '348'),
(3245, 365, '_menu_item_object', 'page'),
(3246, 365, '_menu_item_target', ''),
(3247, 365, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3248, 365, '_menu_item_xfn', ''),
(3249, 365, '_menu_item_url', ''),
(3251, 366, '_menu_item_type', 'post_type'),
(3252, 366, '_menu_item_menu_item_parent', '38'),
(3253, 366, '_menu_item_object_id', '346'),
(3254, 366, '_menu_item_object', 'page'),
(3255, 366, '_menu_item_target', ''),
(3256, 366, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(3257, 366, '_menu_item_xfn', ''),
(3258, 366, '_menu_item_url', ''),
(3260, 35, '_wp_old_date', '2026-02-02'),
(3261, 31, '_wp_old_date', '2026-02-02'),
(3262, 38, '_wp_old_date', '2026-02-02'),
(3285, 367, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(1914, 227, '_elementor_page_settings', 'a:0:{}'),
(1915, 228, '_wp_page_template', 'elementor_header_footer'),
(1916, 228, '_elementor_edit_mode', 'builder'),
(1917, 228, '_elementor_template_type', 'wp-page'),
(1918, 228, '_elementor_version', '3.35.0'),
(1919, 228, '_elementor_pro_version', '3.35.0'),
(1920, 228, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1924, 229, '_wp_page_template', 'elementor_header_footer'),
(1925, 229, '_elementor_edit_mode', 'builder'),
(1926, 229, '_elementor_template_type', 'wp-page'),
(1927, 229, '_elementor_version', '3.35.0'),
(1928, 229, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1929, 229, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1931, 229, '_elementor_page_settings', 'a:0:{}'),
(1932, 230, '_wp_page_template', 'elementor_header_footer'),
(1933, 230, '_elementor_edit_mode', 'builder'),
(1934, 230, '_elementor_template_type', 'wp-page'),
(1935, 230, '_elementor_version', '3.35.0'),
(1936, 230, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1937, 230, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1939, 230, '_elementor_page_settings', 'a:0:{}'),
(1940, 231, '_wp_page_template', 'elementor_header_footer'),
(1941, 231, '_elementor_edit_mode', 'builder'),
(1942, 231, '_elementor_template_type', 'wp-page'),
(1943, 231, '_elementor_version', '3.35.0'),
(1944, 231, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1945, 231, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1973, 235, '_wp_page_template', 'elementor_header_footer'),
(1953, 233, '_wp_page_template', 'elementor_header_footer'),
(1954, 233, '_elementor_edit_mode', 'builder'),
(1955, 233, '_elementor_template_type', 'wp-page'),
(1956, 233, '_elementor_version', '3.35.0'),
(1957, 233, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1958, 233, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2017, 239, '_wp_page_template', 'elementor_header_footer'),
(2018, 239, '_elementor_edit_mode', 'builder'),
(2019, 239, '_elementor_template_type', 'wp-page'),
(1986, 236, '_wp_page_template', 'elementor_header_footer'),
(1987, 236, '_elementor_edit_mode', 'builder'),
(1988, 236, '_elementor_template_type', 'wp-page'),
(1989, 236, '_elementor_version', '3.35.0'),
(1990, 236, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1991, 236, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2024, 239, '_elementor_page_settings', 'a:0:{}'),
(2025, 240, '_wp_page_template', 'elementor_header_footer'),
(2026, 240, '_elementor_edit_mode', 'builder'),
(2027, 240, '_elementor_template_type', 'wp-page'),
(2028, 240, '_elementor_version', '3.35.0'),
(2029, 240, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2030, 240, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1951, 232, '_wp_attached_file', '2026/02/Yoga-For-The-Brain-aa.jpg'),
(1952, 232, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:668;s:4:\"file\";s:33:\"2026/02/Yoga-For-The-Brain-aa.jpg\";s:8:\"filesize\";i:66582;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Yoga-For-The-Brain-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13242;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Yoga-For-The-Brain-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6297;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Yoga-For-The-Brain-aa-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53273;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(1960, 233, '_elementor_page_settings', 'a:0:{}'),
(1963, 234, '_wp_page_template', 'elementor_header_footer'),
(1964, 234, '_elementor_edit_mode', 'builder'),
(1965, 234, '_elementor_template_type', 'wp-page'),
(1966, 234, '_elementor_version', '3.35.0'),
(1967, 234, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1968, 234, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1970, 234, '_elementor_page_settings', 'a:0:{}'),
(4081, 445, '_elementor_page_settings', 'a:0:{}'),
(4084, 446, '_elementor_edit_mode', 'builder'),
(4085, 446, '_elementor_template_type', 'wp-page'),
(4086, 446, '_elementor_version', '3.35.0'),
(4087, 446, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4088, 446, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6498, 688, '_wp_page_template', 'elementor_header_footer'),
(6478, 686, '_wp_page_template', 'elementor_header_footer'),
(6479, 686, '_elementor_edit_mode', 'builder'),
(6480, 686, '_elementor_template_type', 'wp-page'),
(6481, 686, '_elementor_version', '3.35.0'),
(6482, 686, '_elementor_pro_version', '3.35.0'),
(6483, 686, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4950, 531, '_wp_page_template', 'elementor_header_footer'),
(4934, 529, '_wp_page_template', 'elementor_header_footer'),
(4936, 529, '_elementor_edit_mode', 'builder'),
(4937, 529, '_elementor_template_type', 'wp-page'),
(4938, 529, '_elementor_version', '3.35.0'),
(4939, 529, '_elementor_pro_version', '3.35.0'),
(4940, 529, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4941, 529, '_elementor_page_settings', 'a:0:{}'),
(4942, 530, '_wp_page_template', 'elementor_header_footer'),
(4944, 530, '_elementor_edit_mode', 'builder'),
(4945, 530, '_elementor_template_type', 'wp-page'),
(4946, 530, '_elementor_version', '3.35.0'),
(4947, 530, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4948, 530, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(1974, 235, '_elementor_edit_mode', 'builder'),
(1975, 235, '_elementor_template_type', 'wp-page'),
(1976, 235, '_elementor_version', '3.35.0'),
(1977, 235, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1978, 235, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6452, 684, '_wp_page_template', 'elementor_header_footer'),
(6453, 684, '_elementor_edit_mode', 'builder'),
(6454, 684, '_elementor_template_type', 'wp-page'),
(6455, 684, '_elementor_version', '3.35.0'),
(6456, 684, '_elementor_pro_version', '3.35.0'),
(2020, 239, '_elementor_version', '3.35.0'),
(2021, 239, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2022, 239, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(1993, 236, '_elementor_page_settings', 'a:0:{}'),
(4048, 441, '_elementor_page_settings', 'a:0:{}'),
(4049, 442, '_wp_page_template', 'elementor_header_footer'),
(4051, 442, '_elementor_edit_mode', 'builder'),
(4052, 442, '_elementor_template_type', 'wp-page'),
(4053, 442, '_elementor_version', '3.35.0'),
(4054, 442, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4055, 442, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4056, 442, '_elementor_page_settings', 'a:0:{}'),
(4057, 443, '_wp_page_template', 'elementor_header_footer'),
(4059, 443, '_elementor_edit_mode', 'builder'),
(4060, 443, '_elementor_template_type', 'wp-page'),
(4061, 443, '_elementor_version', '3.35.0'),
(4062, 443, '_elementor_pro_version', '3.35.0'),
(4063, 443, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4082, 446, '_wp_page_template', 'elementor_header_footer'),
(4066, 444, '_wp_page_template', 'elementor_header_footer'),
(4068, 444, '_elementor_edit_mode', 'builder'),
(4069, 444, '_elementor_template_type', 'wp-page'),
(4070, 444, '_elementor_version', '3.35.0'),
(4071, 444, '_elementor_pro_version', '3.35.0'),
(4072, 444, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4073, 444, '_elementor_page_settings', 'a:0:{}'),
(4074, 445, '_wp_page_template', 'elementor_header_footer'),
(4076, 445, '_elementor_edit_mode', 'builder'),
(4077, 445, '_elementor_template_type', 'wp-page'),
(4078, 445, '_elementor_version', '3.35.0'),
(4079, 445, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4080, 445, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(1996, 237, '_wp_page_template', 'elementor_header_footer'),
(1997, 237, '_elementor_edit_mode', 'builder'),
(1998, 237, '_elementor_template_type', 'wp-page'),
(1999, 237, '_elementor_version', '3.35.0'),
(2000, 237, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2001, 237, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}]},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2003, 237, '_elementor_page_settings', 'a:0:{}'),
(4023, 438, '_elementor_page_settings', 'a:0:{}'),
(4024, 439, '_wp_page_template', 'elementor_header_footer'),
(4026, 439, '_elementor_edit_mode', 'builder'),
(4027, 439, '_elementor_template_type', 'wp-page'),
(4028, 439, '_elementor_version', '3.35.0'),
(4029, 439, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4030, 439, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4031, 439, '_elementor_page_settings', 'a:0:{}'),
(4034, 440, '_elementor_edit_mode', 'builder'),
(4035, 440, '_elementor_template_type', 'wp-page'),
(4036, 440, '_elementor_version', '3.35.0'),
(4037, 440, '_elementor_pro_version', '3.35.0'),
(4038, 440, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4041, 441, '_wp_page_template', 'elementor_header_footer'),
(4043, 441, '_elementor_edit_mode', 'builder'),
(4044, 441, '_elementor_template_type', 'wp-page'),
(4045, 441, '_elementor_version', '3.35.0'),
(4046, 441, '_elementor_pro_version', '3.35.0'),
(4047, 441, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2006, 238, '_wp_page_template', 'elementor_header_footer'),
(2007, 238, '_elementor_edit_mode', 'builder'),
(2008, 238, '_elementor_template_type', 'wp-page'),
(2009, 238, '_elementor_version', '3.35.0'),
(2010, 238, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2011, 238, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7830, 830, '_wp_page_template', 'elementor_header_footer'),
(7831, 830, '_elementor_edit_mode', 'builder'),
(7832, 830, '_elementor_template_type', 'wp-page'),
(7833, 830, '_elementor_version', '3.35.0'),
(7834, 830, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7835, 830, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2032, 240, '_elementor_page_settings', 'a:0:{}'),
(2033, 241, '_wp_page_template', 'elementor_header_footer'),
(2034, 241, '_elementor_edit_mode', 'builder'),
(2035, 241, '_elementor_template_type', 'wp-page'),
(2036, 241, '_elementor_version', '3.35.0'),
(2037, 241, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2038, 241, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2042, 242, '_wp_page_template', 'elementor_header_footer'),
(2043, 242, '_elementor_edit_mode', 'builder'),
(2044, 242, '_elementor_template_type', 'wp-page'),
(2045, 242, '_elementor_version', '3.35.0'),
(2046, 242, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2047, 242, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2049, 242, '_elementor_page_settings', 'a:0:{}'),
(2050, 243, '_wp_page_template', 'elementor_header_footer'),
(2051, 243, '_elementor_edit_mode', 'builder'),
(2052, 243, '_elementor_template_type', 'wp-page'),
(2053, 243, '_elementor_version', '3.35.0'),
(2054, 243, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2055, 243, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2057, 243, '_elementor_page_settings', 'a:0:{}'),
(2058, 244, '_wp_page_template', 'elementor_header_footer'),
(2059, 244, '_elementor_edit_mode', 'builder'),
(2060, 244, '_elementor_template_type', 'wp-page'),
(2061, 244, '_elementor_version', '3.35.0'),
(2062, 244, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2063, 244, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2067, 245, '_wp_page_template', 'elementor_header_footer'),
(2068, 245, '_elementor_edit_mode', 'builder'),
(2069, 245, '_elementor_template_type', 'wp-page'),
(2070, 245, '_elementor_version', '3.35.0'),
(2071, 245, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2072, 245, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2074, 245, '_elementor_page_settings', 'a:0:{}'),
(2075, 246, '_wp_page_template', 'elementor_header_footer'),
(2076, 246, '_elementor_edit_mode', 'builder'),
(2077, 246, '_elementor_template_type', 'wp-page'),
(2078, 246, '_elementor_version', '3.35.0'),
(2079, 246, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2080, 246, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}]},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33}},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2082, 246, '_elementor_page_settings', 'a:0:{}'),
(2083, 247, '_wp_page_template', 'elementor_header_footer'),
(2084, 247, '_elementor_edit_mode', 'builder'),
(2085, 247, '_elementor_template_type', 'wp-page'),
(2086, 247, '_elementor_version', '3.35.0'),
(2087, 247, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2088, 247, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2092, 248, '_wp_page_template', 'elementor_header_footer'),
(2093, 248, '_elementor_edit_mode', 'builder'),
(2094, 248, '_elementor_template_type', 'wp-page'),
(2095, 248, '_elementor_version', '3.35.0'),
(2096, 248, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2097, 248, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2099, 248, '_elementor_page_settings', 'a:0:{}'),
(2100, 249, '_wp_page_template', 'elementor_header_footer'),
(2101, 249, '_elementor_edit_mode', 'builder'),
(2102, 249, '_elementor_template_type', 'wp-page'),
(2103, 249, '_elementor_version', '3.35.0'),
(2104, 249, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2105, 249, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2107, 249, '_elementor_page_settings', 'a:0:{}'),
(2108, 250, '_wp_page_template', 'elementor_header_footer'),
(2109, 250, '_elementor_edit_mode', 'builder'),
(2110, 250, '_elementor_template_type', 'wp-page'),
(2111, 250, '_elementor_version', '3.35.0'),
(2112, 250, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2113, 250, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2117, 251, '_wp_page_template', 'elementor_header_footer'),
(2118, 251, '_elementor_edit_mode', 'builder'),
(2119, 251, '_elementor_template_type', 'wp-page'),
(2120, 251, '_elementor_version', '3.35.0'),
(2121, 251, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2122, 251, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2124, 251, '_elementor_page_settings', 'a:0:{}'),
(2125, 252, '_wp_page_template', 'elementor_header_footer'),
(2126, 252, '_elementor_edit_mode', 'builder'),
(2127, 252, '_elementor_template_type', 'wp-page'),
(2128, 252, '_elementor_version', '3.35.0'),
(2129, 252, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2130, 252, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2132, 252, '_elementor_page_settings', 'a:0:{}'),
(2133, 253, '_wp_page_template', 'elementor_header_footer'),
(2134, 253, '_elementor_edit_mode', 'builder'),
(2135, 253, '_elementor_template_type', 'wp-page'),
(2136, 253, '_elementor_version', '3.35.0'),
(2137, 253, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2138, 253, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2164, 256, '_wp_page_template', 'elementor_header_footer'),
(2144, 254, '_wp_page_template', 'elementor_header_footer'),
(2145, 254, '_elementor_edit_mode', 'builder'),
(2146, 254, '_elementor_template_type', 'wp-page'),
(2147, 254, '_elementor_version', '3.35.0'),
(2148, 254, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2149, 254, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2177, 257, '_wp_page_template', 'elementor_header_footer'),
(2178, 257, '_elementor_edit_mode', 'builder'),
(2179, 257, '_elementor_template_type', 'wp-page'),
(2180, 257, '_elementor_version', '3.35.0'),
(2181, 257, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2182, 257, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2281, 266, '_elementor_page_settings', 'a:0:{}'),
(2282, 267, '_wp_page_template', 'elementor_header_footer'),
(2283, 267, '_elementor_edit_mode', 'builder'),
(2284, 267, '_elementor_template_type', 'wp-page'),
(2285, 267, '_elementor_version', '3.35.0'),
(2286, 267, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2287, 267, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2151, 254, '_elementor_page_settings', 'a:0:{}'),
(3991, 435, '_wp_page_template', 'elementor_header_footer'),
(3993, 435, '_elementor_edit_mode', 'builder'),
(3994, 435, '_elementor_template_type', 'wp-page'),
(3995, 435, '_elementor_version', '3.35.0'),
(3996, 435, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3997, 435, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3998, 435, '_elementor_page_settings', 'a:0:{}'),
(3999, 436, '_wp_page_template', 'elementor_header_footer'),
(4001, 436, '_elementor_edit_mode', 'builder'),
(4002, 436, '_elementor_template_type', 'wp-page'),
(4003, 436, '_elementor_version', '3.35.0'),
(4004, 436, '_elementor_pro_version', '3.35.0'),
(4005, 436, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4006, 436, '_elementor_page_settings', 'a:0:{}'),
(4007, 437, '_wp_page_template', 'elementor_header_footer'),
(4009, 437, '_elementor_edit_mode', 'builder'),
(4010, 437, '_elementor_template_type', 'wp-page'),
(4011, 437, '_elementor_version', '3.35.0'),
(4012, 437, '_elementor_pro_version', '3.35.0'),
(4013, 437, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4032, 440, '_wp_page_template', 'elementor_header_footer'),
(4016, 438, '_wp_page_template', 'elementor_header_footer'),
(4018, 438, '_elementor_edit_mode', 'builder'),
(4019, 438, '_elementor_template_type', 'wp-page'),
(4020, 438, '_elementor_version', '3.35.0'),
(4021, 438, '_elementor_pro_version', '3.35.0'),
(4022, 438, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2154, 255, '_wp_page_template', 'elementor_header_footer'),
(2155, 255, '_elementor_edit_mode', 'builder'),
(2156, 255, '_elementor_template_type', 'wp-page'),
(2157, 255, '_elementor_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2158, 255, '_elementor_pro_version', '3.35.0'),
(2159, 255, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2161, 255, '_elementor_page_settings', 'a:0:{}'),
(4660, 501, '_elementor_page_settings', 'a:0:{}'),
(7582, 800, '_wp_page_template', 'elementor_header_footer'),
(7583, 800, '_elementor_edit_mode', 'builder'),
(7584, 800, '_elementor_template_type', 'wp-page'),
(7585, 800, '_elementor_version', '3.35.0'),
(7586, 800, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7587, 800, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3973, 432, '_elementor_page_settings', 'a:0:{}'),
(3974, 433, '_wp_page_template', 'elementor_header_footer'),
(3976, 433, '_elementor_edit_mode', 'builder'),
(3977, 433, '_elementor_template_type', 'wp-page'),
(3978, 433, '_elementor_version', '3.35.0'),
(3979, 433, '_elementor_pro_version', '3.35.0'),
(3980, 433, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3981, 433, '_elementor_page_settings', 'a:0:{}'),
(3982, 434, '_wp_page_template', 'elementor_header_footer'),
(3984, 434, '_elementor_edit_mode', 'builder'),
(3985, 434, '_elementor_template_type', 'wp-page'),
(3986, 434, '_elementor_version', '3.35.0'),
(3987, 434, '_elementor_pro_version', '3.35.0'),
(3988, 434, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2165, 256, '_elementor_edit_mode', 'builder'),
(2166, 256, '_elementor_template_type', 'wp-page'),
(2167, 256, '_elementor_version', '3.35.0'),
(2168, 256, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2169, 256, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7827, 829, '_elementor_page_settings', 'a:0:{}'),
(3359, 374, '_wp_page_template', 'elementor_header_footer'),
(3360, 374, '_elementor_edit_mode', 'builder'),
(3361, 374, '_elementor_template_type', 'wp-page'),
(3362, 374, '_elementor_version', '3.35.0'),
(3363, 374, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3364, 374, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4128, 450, '_wp_page_template', 'elementor_header_footer'),
(2210, 260, '_wp_page_template', 'elementor_header_footer'),
(2211, 260, '_elementor_edit_mode', 'builder'),
(2212, 260, '_elementor_template_type', 'wp-page'),
(2213, 260, '_elementor_version', '3.35.0'),
(2214, 260, '_elementor_pro_version', '3.35.0'),
(2215, 260, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2184, 257, '_elementor_page_settings', 'a:0:{}'),
(4657, 501, '_elementor_template_type', 'wp-page'),
(4658, 501, '_elementor_version', '3.35.0'),
(4659, 501, '_elementor_pro_version', '3.35.0'),
(3939, 428, '_elementor_page_settings', 'a:0:{}'),
(3942, 429, '_wp_page_template', 'elementor_header_footer'),
(3944, 429, '_elementor_edit_mode', 'builder'),
(3945, 429, '_elementor_template_type', 'wp-page'),
(3946, 429, '_elementor_version', '3.35.0'),
(3947, 429, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3948, 429, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3949, 429, '_elementor_page_settings', 'a:0:{}'),
(7589, 800, '_elementor_page_settings', 'a:0:{}'),
(3952, 430, '_wp_page_template', 'elementor_header_footer'),
(3954, 430, '_elementor_edit_mode', 'builder'),
(3955, 430, '_elementor_template_type', 'wp-page'),
(3956, 430, '_elementor_version', '3.35.0'),
(3957, 430, '_elementor_pro_version', '3.35.0'),
(3958, 430, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2187, 258, '_wp_page_template', 'elementor_header_footer'),
(2188, 258, '_elementor_edit_mode', 'builder'),
(2189, 258, '_elementor_template_type', 'wp-page'),
(2190, 258, '_elementor_version', '3.35.0'),
(2191, 258, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2192, 258, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2194, 258, '_elementor_page_settings', 'a:0:{}'),
(4654, 501, '_wp_page_template', 'elementor_header_footer'),
(6648, 700, '_elementor_edit_mode', 'builder'),
(4656, 501, '_elementor_edit_mode', 'builder'),
(7593, 801, '_elementor_edit_mode', 'builder'),
(7594, 801, '_elementor_template_type', 'wp-page'),
(7595, 801, '_elementor_version', '3.35.0'),
(7596, 801, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7597, 801, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3966, 432, '_wp_page_template', 'elementor_header_footer'),
(3968, 432, '_elementor_edit_mode', 'builder'),
(3969, 432, '_elementor_template_type', 'wp-page'),
(3970, 432, '_elementor_version', '3.35.0'),
(3971, 432, '_elementor_pro_version', '3.35.0'),
(3972, 432, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3963, 431, '_wp_attached_file', '2026/02/empathy_10966139.svg'),
(3964, 431, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:5025;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(3926, 426, '_wp_attached_file', '2026/02/social-life_18367807.svg'),
(3927, 426, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:8146;s:5:\"width\";i:500;s:6:\"height\";i:500;}'),
(9713, 1015, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11315, 1164, '_elementor_source', 'post'),
(11316, 1164, '_elementor_edit_mode', 'builder'),
(11317, 1164, '_elementor_template_type', 'header'),
(11318, 1164, '_elementor_version', '3.35.0'),
(11319, 1164, '_elementor_pro_version', '3.35.0'),
(11320, 1164, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11321, 1164, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":1163,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3929, 427, '_wp_attached_file', '2026/02/social-life_18367807-1.svg'),
(3930, 427, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:8146;s:5:\"width\";i:500;s:6:\"height\";i:500;}'),
(2197, 259, '_wp_page_template', 'elementor_header_footer'),
(2198, 259, '_elementor_edit_mode', 'builder'),
(2199, 259, '_elementor_template_type', 'wp-page'),
(2200, 259, '_elementor_version', '3.35.0'),
(2201, 259, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2202, 259, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3333, 371, '_elementor_page_settings', 'a:0:{}'),
(7818, 828, '_wp_attached_file', '2026/02/Why-Families-Choose-Oasis-av.jpg'),
(7819, 828, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:40:\"2026/02/Why-Families-Choose-Oasis-av.jpg\";s:8:\"filesize\";i:97694;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Why-Families-Choose-Oasis-av-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Why-Families-Choose-Oasis-av-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8761;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Why-Families-Choose-Oasis-av-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(2243, 263, '_wp_page_template', 'elementor_header_footer'),
(2244, 263, '_elementor_edit_mode', 'builder'),
(2245, 263, '_elementor_template_type', 'wp-page'),
(2246, 263, '_elementor_version', '3.35.0'),
(2247, 263, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2248, 263, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2217, 260, '_elementor_page_settings', 'a:0:{}'),
(4651, 500, '_elementor_version', '3.35.0'),
(4652, 500, '_elementor_pro_version', '3.35.0'),
(4653, 500, '_elementor_page_settings', 'a:0:{}'),
(3900, 423, '_elementor_page_settings', 'a:0:{}'),
(3903, 424, '_wp_page_template', 'elementor_header_footer'),
(3905, 424, '_elementor_edit_mode', 'builder'),
(3906, 424, '_elementor_template_type', 'wp-page'),
(3907, 424, '_elementor_version', '3.35.0'),
(3908, 424, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3909, 424, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3910, 424, '_elementor_page_settings', 'a:0:{}'),
(3913, 425, '_wp_page_template', 'elementor_header_footer'),
(3915, 425, '_elementor_edit_mode', 'builder'),
(3916, 425, '_elementor_template_type', 'wp-page'),
(3917, 425, '_elementor_version', '3.35.0'),
(3918, 425, '_elementor_pro_version', '3.35.0'),
(3919, 425, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2220, 261, '_wp_page_template', 'elementor_header_footer'),
(2221, 261, '_elementor_edit_mode', 'builder'),
(2222, 261, '_elementor_template_type', 'wp-page'),
(2223, 261, '_elementor_version', '3.35.0'),
(2224, 261, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2225, 261, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1450,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2227, 261, '_elementor_page_settings', 'a:0:{}'),
(6647, 700, '_wp_page_template', 'elementor_header_footer'),
(4649, 500, '_elementor_edit_mode', 'builder'),
(4650, 500, '_elementor_template_type', 'wp-page'),
(3881, 421, '_elementor_page_settings', 'a:0:{}'),
(3882, 422, '_wp_page_template', 'elementor_header_footer'),
(3884, 422, '_elementor_edit_mode', 'builder'),
(3885, 422, '_elementor_template_type', 'wp-page'),
(3886, 422, '_elementor_version', '3.35.0'),
(3887, 422, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3888, 422, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3893, 423, '_wp_page_template', 'elementor_header_footer'),
(3895, 423, '_elementor_edit_mode', 'builder'),
(3896, 423, '_elementor_template_type', 'wp-page'),
(3897, 423, '_elementor_version', '3.35.0'),
(3898, 423, '_elementor_pro_version', '3.35.0'),
(3899, 423, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3932, 428, '_wp_page_template', 'elementor_header_footer'),
(3934, 428, '_elementor_edit_mode', 'builder'),
(3935, 428, '_elementor_template_type', 'wp-page'),
(3936, 428, '_elementor_version', '3.35.0'),
(3937, 428, '_elementor_pro_version', '3.35.0'),
(3938, 428, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}]},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(2230, 262, '_wp_page_template', 'elementor_header_footer'),
(2231, 262, '_elementor_edit_mode', 'builder'),
(2232, 262, '_elementor_template_type', 'wp-page'),
(2233, 262, '_elementor_version', '3.35.0'),
(2234, 262, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2235, 262, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7853, 832, '_wp_page_template', 'elementor_header_footer'),
(7854, 832, '_elementor_edit_mode', 'builder'),
(7855, 832, '_elementor_template_type', 'wp-page'),
(7856, 832, '_elementor_version', '3.35.0'),
(7857, 832, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7858, 832, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9372, 981, '_wp_page_template', 'elementor_header_footer'),
(9374, 981, '_elementor_edit_mode', 'builder'),
(9375, 981, '_elementor_template_type', 'wp-page'),
(9376, 981, '_elementor_version', '3.35.0'),
(9377, 981, '_elementor_pro_version', '3.35.0'),
(9378, 981, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"height\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9379, 981, '_elementor_page_settings', 'a:0:{}'),
(9380, 982, '_wp_page_template', 'elementor_header_footer'),
(9382, 982, '_elementor_edit_mode', 'builder'),
(9383, 982, '_elementor_template_type', 'wp-page'),
(9384, 982, '_elementor_version', '3.35.0'),
(9385, 982, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9386, 982, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"height\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9348, 978, '_elementor_page_settings', 'a:0:{}'),
(3336, 372, '_wp_page_template', 'elementor_header_footer'),
(3337, 372, '_elementor_edit_mode', 'builder'),
(3338, 372, '_elementor_template_type', 'wp-page'),
(3339, 372, '_elementor_version', '3.35.0'),
(3340, 372, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3341, 372, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2290, 268, '_wp_page_template', 'elementor_header_footer'),
(2274, 266, '_wp_page_template', 'elementor_header_footer'),
(2275, 266, '_elementor_edit_mode', 'builder'),
(2276, 266, '_elementor_template_type', 'wp-page'),
(2277, 266, '_elementor_version', '3.35.0'),
(2278, 266, '_elementor_pro_version', '3.35.0'),
(2279, 266, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2250, 263, '_elementor_page_settings', 'a:0:{}'),
(4644, 18, '_elementor_version', '3.35.0'),
(4645, 18, '_elementor_pro_version', '3.35.0'),
(4647, 500, '_wp_page_template', 'elementor_header_footer'),
(3866, 420, '_wp_page_template', 'elementor_header_footer'),
(3868, 420, '_elementor_edit_mode', 'builder'),
(3869, 420, '_elementor_template_type', 'wp-page'),
(3870, 420, '_elementor_version', '3.35.0'),
(3871, 420, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3872, 420, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3833, 416, '_wp_attached_file', '2026/02/active-a.jpg'),
(3834, 416, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:20:\"2026/02/active-a.jpg\";s:8:\"filesize\";i:87203;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"active-a-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19463;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"active-a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8651;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"active-a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81526;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3842, 417, '_elementor_page_settings', 'a:0:{}'),
(3845, 418, '_wp_page_template', 'elementor_header_footer'),
(3847, 418, '_elementor_edit_mode', 'builder'),
(3848, 418, '_elementor_template_type', 'wp-page'),
(3849, 418, '_elementor_version', '3.35.0'),
(3850, 418, '_elementor_pro_version', '3.35.0'),
(3851, 418, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3852, 418, '_elementor_page_settings', 'a:0:{}'),
(3855, 419, '_wp_page_template', 'elementor_header_footer'),
(3857, 419, '_elementor_edit_mode', 'builder'),
(3858, 419, '_elementor_template_type', 'wp-page'),
(3859, 419, '_elementor_version', '3.35.0'),
(3860, 419, '_elementor_pro_version', '3.35.0'),
(3861, 419, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2253, 264, '_wp_page_template', 'elementor_header_footer'),
(2254, 264, '_elementor_edit_mode', 'builder'),
(2255, 264, '_elementor_template_type', 'wp-page'),
(2256, 264, '_elementor_version', '3.35.0'),
(2257, 264, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2258, 264, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2260, 264, '_elementor_page_settings', 'a:0:{}'),
(4642, 18, 'ast-featured-img', 'disabled'),
(4643, 18, '_elementor_template_type', 'wp-page'),
(3807, 413, '_elementor_page_settings', 'a:0:{}'),
(7627, 804, '_elementor_page_settings', 'a:0:{}'),
(3810, 414, '_wp_page_template', 'elementor_header_footer'),
(7148, 752, '_elementor_edit_mode', 'builder'),
(7149, 752, '_elementor_template_type', 'wp-page'),
(7150, 752, '_elementor_version', '3.35.0'),
(7151, 752, '_elementor_pro_version', '3.35.0'),
(3812, 414, '_elementor_edit_mode', 'builder'),
(3813, 414, '_elementor_template_type', 'wp-page'),
(3814, 414, '_elementor_version', '3.35.0'),
(3815, 414, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3816, 414, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3817, 414, '_elementor_page_settings', 'a:0:{}'),
(7619, 803, '_elementor_page_settings', 'a:0:{}'),
(7620, 804, '_wp_page_template', 'elementor_header_footer'),
(7621, 804, '_elementor_edit_mode', 'builder'),
(7622, 804, '_elementor_template_type', 'wp-page'),
(7623, 804, '_elementor_version', '3.35.0'),
(7624, 804, '_elementor_pro_version', '3.35.0'),
(7625, 804, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7152, 752, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3822, 415, '_elementor_edit_mode', 'builder'),
(3823, 415, '_elementor_template_type', 'wp-page'),
(3824, 415, '_elementor_version', '3.35.0'),
(3825, 415, '_elementor_pro_version', '3.35.0'),
(3826, 415, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2263, 265, '_wp_page_template', 'elementor_header_footer'),
(2264, 265, '_elementor_edit_mode', 'builder'),
(2265, 265, '_elementor_template_type', 'wp-page'),
(2266, 265, '_elementor_version', '3.35.0'),
(2267, 265, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2268, 265, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3343, 372, '_elementor_page_settings', 'a:0:{}'),
(7820, 829, '_wp_page_template', 'elementor_header_footer'),
(7821, 829, '_elementor_edit_mode', 'builder'),
(7822, 829, '_elementor_template_type', 'wp-page'),
(7823, 829, '_elementor_version', '3.35.0'),
(7824, 829, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7825, 829, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9308, 975, '_wp_page_template', 'elementor_header_footer'),
(9309, 975, '_elementor_edit_mode', 'builder'),
(9310, 975, '_elementor_template_type', 'wp-page'),
(9351, 979, '_wp_page_template', 'elementor_header_footer'),
(9353, 979, '_elementor_edit_mode', 'builder'),
(9354, 979, '_elementor_template_type', 'wp-page'),
(9355, 979, '_elementor_version', '3.35.0'),
(9356, 979, '_elementor_pro_version', '3.35.0'),
(9357, 979, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.<\\/p>\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(2289, 267, '_elementor_page_settings', 'a:0:{}'),
(2291, 268, '_elementor_edit_mode', 'builder'),
(2292, 268, '_elementor_template_type', 'wp-page'),
(2293, 268, '_elementor_version', '3.35.0'),
(2294, 268, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2295, 268, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2299, 269, '_wp_page_template', 'elementor_header_footer'),
(2300, 269, '_elementor_edit_mode', 'builder'),
(2301, 269, '_elementor_template_type', 'wp-page'),
(2302, 269, '_elementor_version', '3.35.0'),
(2303, 269, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2304, 269, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2306, 269, '_elementor_page_settings', 'a:0:{}'),
(2307, 270, '_wp_page_template', 'elementor_header_footer'),
(2308, 270, '_elementor_edit_mode', 'builder'),
(2309, 270, '_elementor_template_type', 'wp-page'),
(2310, 270, '_elementor_version', '3.35.0'),
(2311, 270, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2312, 270, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}]},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2314, 270, '_elementor_page_settings', 'a:0:{}'),
(2379, 277, '_wp_page_template', 'elementor_header_footer'),
(2315, 271, '_wp_page_template', 'elementor_header_footer'),
(2316, 271, '_elementor_edit_mode', 'builder'),
(2317, 271, '_elementor_template_type', 'wp-page'),
(2318, 271, '_elementor_version', '3.35.0'),
(2319, 271, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2320, 271, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2346, 274, '_wp_page_template', 'elementor_header_footer'),
(2326, 272, '_wp_page_template', 'elementor_header_footer'),
(2327, 272, '_elementor_edit_mode', 'builder'),
(2328, 272, '_elementor_template_type', 'wp-page'),
(2329, 272, '_elementor_version', '3.35.0'),
(2330, 272, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2331, 272, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2380, 277, '_elementor_edit_mode', 'builder'),
(2359, 275, '_wp_page_template', 'elementor_header_footer'),
(2360, 275, '_elementor_edit_mode', 'builder'),
(2361, 275, '_elementor_template_type', 'wp-page'),
(2362, 275, '_elementor_version', '3.35.0'),
(2363, 275, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2364, 275, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2498, 288, '_elementor_page_settings', 'a:0:{}'),
(2499, 289, '_wp_page_template', 'elementor_header_footer'),
(2500, 289, '_elementor_edit_mode', 'builder'),
(2501, 289, '_elementor_template_type', 'wp-page'),
(2502, 289, '_elementor_version', '3.35.0'),
(2503, 289, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2504, 289, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2333, 272, '_elementor_page_settings', 'a:0:{}'),
(4639, 18, '_astra_content_layout_flag', 'disabled'),
(4661, 18, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Communities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4641, 18, 'ast-title-bar-display', 'disabled'),
(3755, 407, '_elementor_page_settings', 'a:0:{}'),
(3756, 408, '_wp_page_template', 'elementor_header_footer'),
(3758, 408, '_elementor_edit_mode', 'builder'),
(3759, 408, '_elementor_template_type', 'wp-page'),
(3760, 408, '_elementor_version', '3.35.0'),
(3761, 408, '_elementor_pro_version', '3.35.0'),
(3762, 408, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}]},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3763, 408, '_elementor_page_settings', 'a:0:{}'),
(3764, 409, '_wp_page_template', 'elementor_header_footer'),
(3766, 409, '_elementor_edit_mode', 'builder'),
(3767, 409, '_elementor_template_type', 'wp-page'),
(3768, 409, '_elementor_version', '3.35.0'),
(3769, 409, '_elementor_pro_version', '3.35.0'),
(3770, 409, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3773, 410, '_wp_page_template', 'elementor_header_footer'),
(3775, 410, '_elementor_edit_mode', 'builder'),
(3776, 410, '_elementor_template_type', 'wp-page'),
(3777, 410, '_elementor_version', '3.35.0'),
(3778, 410, '_elementor_pro_version', '3.35.0'),
(3779, 410, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3780, 410, '_elementor_page_settings', 'a:0:{}'),
(3781, 411, '_wp_page_template', 'elementor_header_footer'),
(3783, 411, '_elementor_edit_mode', 'builder'),
(3784, 411, '_elementor_template_type', 'wp-page'),
(3785, 411, '_elementor_version', '3.35.0'),
(3786, 411, '_elementor_pro_version', '3.35.0'),
(3787, 411, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3788, 411, '_elementor_page_settings', 'a:0:{}'),
(3789, 412, '_wp_page_template', 'elementor_header_footer'),
(3791, 412, '_elementor_edit_mode', 'builder'),
(3792, 412, '_elementor_template_type', 'wp-page'),
(3793, 412, '_elementor_version', '3.35.0'),
(3794, 412, '_elementor_pro_version', '3.35.0'),
(3795, 412, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3820, 415, '_wp_page_template', 'elementor_header_footer'),
(3800, 413, '_wp_page_template', 'elementor_header_footer'),
(7146, 751, '_elementor_page_settings', 'a:0:{}'),
(7147, 752, '_wp_page_template', 'elementor_header_footer'),
(3802, 413, '_elementor_edit_mode', 'builder'),
(3803, 413, '_elementor_template_type', 'wp-page'),
(3804, 413, '_elementor_version', '3.35.0'),
(3805, 413, '_elementor_pro_version', '3.35.0'),
(3806, 413, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3835, 417, '_wp_page_template', 'elementor_header_footer'),
(3837, 417, '_elementor_edit_mode', 'builder'),
(3838, 417, '_elementor_template_type', 'wp-page'),
(3839, 417, '_elementor_version', '3.35.0'),
(3840, 417, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3841, 417, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3873, 420, '_elementor_page_settings', 'a:0:{}'),
(3874, 421, '_wp_page_template', 'elementor_header_footer'),
(3876, 421, '_elementor_edit_mode', 'builder'),
(3877, 421, '_elementor_template_type', 'wp-page'),
(3878, 421, '_elementor_version', '3.35.0'),
(3879, 421, '_elementor_pro_version', '3.35.0'),
(3880, 421, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2336, 273, '_wp_page_template', 'elementor_header_footer'),
(2337, 273, '_elementor_edit_mode', 'builder'),
(2338, 273, '_elementor_template_type', 'wp-page'),
(2339, 273, '_elementor_version', '3.35.0'),
(2340, 273, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2341, 273, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1500,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2343, 273, '_elementor_page_settings', 'a:0:{}'),
(4638, 18, '_elementor_edit_mode', 'builder'),
(3707, 403, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5828, 627, '_elementor_source', 'post'),
(5829, 627, '_elementor_edit_mode', 'builder'),
(5830, 627, '_elementor_template_type', 'header'),
(5831, 627, '_elementor_version', '3.35.0'),
(5832, 627, '_elementor_pro_version', '3.35.0'),
(5833, 627, '_wp_page_template', 'default'),
(5834, 627, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3748, 407, '_wp_page_template', 'elementor_header_footer'),
(3750, 407, '_elementor_edit_mode', 'builder'),
(3751, 407, '_elementor_template_type', 'wp-page'),
(3752, 407, '_elementor_version', '3.35.0'),
(3753, 407, '_elementor_pro_version', '3.35.0'),
(3754, 407, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}]},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(3724, 404, '_elementor_page_settings', 'a:0:{}'),
(3727, 405, '_wp_page_template', 'elementor_header_footer'),
(3729, 405, '_elementor_edit_mode', 'builder'),
(3730, 405, '_elementor_template_type', 'wp-page'),
(3731, 405, '_elementor_version', '3.35.0'),
(3732, 405, '_elementor_pro_version', '3.35.0'),
(3733, 405, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3734, 405, '_elementor_page_settings', 'a:0:{}'),
(7637, 806, '_wp_page_template', 'elementor_header_footer'),
(7638, 806, '_elementor_edit_mode', 'builder'),
(7639, 806, '_elementor_template_type', 'wp-page'),
(7640, 806, '_elementor_version', '3.35.0'),
(7641, 806, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7642, 806, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3737, 406, '_wp_page_template', 'elementor_header_footer'),
(3739, 406, '_elementor_edit_mode', 'builder'),
(3740, 406, '_elementor_template_type', 'wp-page'),
(3741, 406, '_elementor_version', '3.35.0'),
(3742, 406, '_elementor_pro_version', '3.35.0'),
(3743, 406, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}]},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}]},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}]},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\" Familiar With Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(2347, 274, '_elementor_edit_mode', 'builder'),
(2348, 274, '_elementor_template_type', 'wp-page'),
(2349, 274, '_elementor_version', '3.35.0'),
(2350, 274, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2351, 274, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7805, 826, '_elementor_page_settings', 'a:0:{}'),
(7806, 827, '_wp_page_template', 'elementor_header_footer'),
(7807, 827, '_elementor_edit_mode', 'builder'),
(7808, 827, '_elementor_template_type', 'wp-page'),
(7809, 827, '_elementor_version', '3.35.0'),
(7810, 827, '_elementor_pro_version', '3.35.0'),
(7811, 827, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3346, 373, '_wp_page_template', 'elementor_header_footer'),
(3347, 373, '_elementor_edit_mode', 'builder'),
(3348, 373, '_elementor_template_type', 'wp-page'),
(3349, 373, '_elementor_version', '3.35.0'),
(3350, 373, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3351, 373, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2414, 281, '_wp_page_template', 'elementor_header_footer'),
(2394, 279, '_wp_page_template', 'elementor_header_footer'),
(2395, 279, '_elementor_edit_mode', 'builder'),
(2396, 279, '_elementor_template_type', 'wp-page'),
(2397, 279, '_elementor_version', '3.35.0'),
(2398, 279, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2399, 279, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2366, 275, '_elementor_page_settings', 'a:0:{}'),
(3717, 404, '_wp_page_template', 'elementor_header_footer'),
(3719, 404, '_elementor_edit_mode', 'builder'),
(3720, 404, '_elementor_template_type', 'wp-page'),
(3721, 404, '_elementor_version', '3.35.0'),
(3722, 404, '_elementor_pro_version', '3.35.0'),
(3723, 404, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11313, 1163, '_wp_attached_file', '2026/02/breadcrumb-abc.webp'),
(11314, 1163, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:667;s:4:\"file\";s:27:\"2026/02/breadcrumb-abc.webp\";s:8:\"filesize\";i:85954;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"breadcrumb-abc-300x100.webp\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14492;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"breadcrumb-abc-1024x342.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48812;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"breadcrumb-abc-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"breadcrumb-abc-768x256.webp\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:34960;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"breadcrumb-abc-1536x512.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:78696;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(3681, 401, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3700, 403, '_elementor_source', 'post'),
(3701, 403, '_elementor_edit_mode', 'builder'),
(3702, 403, '_elementor_template_type', 'header'),
(3703, 403, '_elementor_version', '3.35.0'),
(3704, 403, '_elementor_pro_version', '3.35.0'),
(3705, 403, '_wp_page_template', 'default'),
(3706, 403, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5743, 619, '_elementor_source', 'post'),
(5744, 619, '_elementor_edit_mode', 'builder'),
(5745, 619, '_elementor_template_type', 'header'),
(5746, 619, '_elementor_version', '3.35.0'),
(5747, 619, '_elementor_pro_version', '3.35.0'),
(5748, 619, '_wp_page_template', 'default'),
(5749, 619, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2369, 276, '_wp_page_template', 'elementor_header_footer'),
(2370, 276, '_elementor_edit_mode', 'builder'),
(2371, 276, '_elementor_template_type', 'wp-page'),
(2372, 276, '_elementor_version', '3.35.0'),
(2373, 276, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2374, 276, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1600,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2376, 276, '_elementor_page_settings', 'a:0:{}'),
(7467, 786, '_elementor_page_settings', 'a:0:{}'),
(7468, 787, '_wp_page_template', 'elementor_header_footer'),
(7469, 787, '_elementor_edit_mode', 'builder'),
(7470, 787, '_elementor_template_type', 'wp-page'),
(7471, 787, '_elementor_version', '3.35.0'),
(7472, 787, '_elementor_pro_version', '3.35.0'),
(7473, 787, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7475, 787, '_elementor_page_settings', 'a:0:{}'),
(7501, 791, '_wp_page_template', 'elementor_header_footer'),
(7502, 791, '_elementor_edit_mode', 'builder'),
(7503, 791, '_elementor_template_type', 'wp-page'),
(7504, 791, '_elementor_version', '3.35.0'),
(7476, 788, '_wp_page_template', 'elementor_header_footer'),
(7477, 788, '_elementor_edit_mode', 'builder'),
(7478, 788, '_elementor_template_type', 'wp-page'),
(7479, 788, '_elementor_version', '3.35.0'),
(7480, 788, '_elementor_pro_version', '3.35.0'),
(7481, 788, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4129, 450, '_elementor_edit_mode', 'builder'),
(4130, 450, '_elementor_template_type', 'wp-page'),
(4131, 450, '_elementor_version', '3.35.0'),
(4132, 450, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4133, 450, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3639, 14, '_elementor_edit_mode', 'builder'),
(3640, 14, '_astra_content_layout_flag', 'disabled'),
(3662, 14, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89dc59c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Health Care Community\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To provide compassionate, high-quality Oasis Health Care Community that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3642, 14, 'ast-title-bar-display', 'disabled'),
(3643, 14, 'ast-featured-img', 'disabled'),
(3644, 14, '_elementor_template_type', 'wp-page'),
(3645, 14, '_elementor_version', '3.35.0'),
(3646, 14, '_elementor_pro_version', '3.35.0'),
(3648, 397, '_wp_page_template', 'elementor_header_footer'),
(3650, 397, '_elementor_edit_mode', 'builder'),
(3651, 397, '_elementor_template_type', 'wp-page'),
(3652, 397, '_elementor_version', '3.35.0'),
(3653, 397, '_elementor_pro_version', '3.35.0'),
(3654, 397, '_elementor_page_settings', 'a:0:{}'),
(3655, 398, '_wp_page_template', 'elementor_header_footer'),
(3657, 398, '_elementor_edit_mode', 'builder'),
(3658, 398, '_elementor_template_type', 'wp-page'),
(3659, 398, '_elementor_version', '3.35.0'),
(3660, 398, '_elementor_pro_version', '3.35.0'),
(3661, 398, '_elementor_page_settings', 'a:0:{}'),
(3663, 399, '_wp_page_template', 'elementor_header_footer'),
(3665, 399, '_elementor_edit_mode', 'builder'),
(3666, 399, '_elementor_template_type', 'wp-page'),
(3667, 399, '_elementor_version', '3.35.0'),
(3668, 399, '_elementor_pro_version', '3.35.0'),
(3669, 399, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(2381, 277, '_elementor_template_type', 'wp-page'),
(2382, 277, '_elementor_version', '3.35.0'),
(2383, 277, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2384, 277, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2427, 282, '_wp_page_template', 'elementor_header_footer'),
(2428, 282, '_elementor_edit_mode', 'builder'),
(2429, 282, '_elementor_template_type', 'wp-page'),
(2430, 282, '_elementor_version', '3.35.0'),
(2431, 282, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2432, 282, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2401, 279, '_elementor_page_settings', 'a:0:{}'),
(6680, 702, '_wp_page_template', 'elementor_header_footer'),
(6681, 702, '_elementor_edit_mode', 'builder'),
(6682, 702, '_elementor_template_type', 'wp-page'),
(6683, 702, '_elementor_version', '3.35.0'),
(6684, 702, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6685, 702, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2404, 280, '_wp_page_template', 'elementor_header_footer'),
(2405, 280, '_elementor_edit_mode', 'builder'),
(2406, 280, '_elementor_template_type', 'wp-page'),
(2407, 280, '_elementor_version', '3.35.0'),
(2408, 280, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2409, 280, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2411, 280, '_elementor_page_settings', 'a:0:{}'),
(7485, 789, '_wp_page_template', 'elementor_header_footer'),
(7486, 789, '_elementor_edit_mode', 'builder'),
(7487, 789, '_elementor_template_type', 'wp-page'),
(7488, 789, '_elementor_version', '3.35.0'),
(7489, 789, '_elementor_pro_version', '3.35.0'),
(7490, 789, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7492, 789, '_elementor_page_settings', 'a:0:{}'),
(7493, 790, '_wp_page_template', 'elementor_header_footer'),
(7494, 790, '_elementor_edit_mode', 'builder'),
(7495, 790, '_elementor_template_type', 'wp-page'),
(7496, 790, '_elementor_version', '3.35.0'),
(7497, 790, '_elementor_pro_version', '3.35.0'),
(7498, 790, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3626, 396, '_wp_page_template', 'elementor_header_footer'),
(3627, 396, '_elementor_edit_mode', 'builder'),
(3628, 396, '_elementor_template_type', 'wp-page'),
(3629, 396, '_elementor_version', '3.35.0'),
(3630, 396, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3631, 396, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2415, 281, '_elementor_edit_mode', 'builder'),
(2416, 281, '_elementor_template_type', 'wp-page'),
(2417, 281, '_elementor_version', '3.35.0'),
(2418, 281, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2419, 281, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7790, 825, '_wp_page_template', 'elementor_header_footer'),
(7791, 825, '_elementor_edit_mode', 'builder'),
(7792, 825, '_elementor_template_type', 'wp-page'),
(7793, 825, '_elementor_version', '3.35.0'),
(7794, 825, '_elementor_pro_version', '3.35.0'),
(7795, 825, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7797, 825, '_elementor_page_settings', 'a:0:{}'),
(7798, 826, '_wp_page_template', 'elementor_header_footer'),
(7799, 826, '_elementor_edit_mode', 'builder'),
(7800, 826, '_elementor_template_type', 'wp-page'),
(7801, 826, '_elementor_version', '3.35.0'),
(7802, 826, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7803, 826, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3392, 377, '_wp_page_template', 'elementor_header_footer'),
(3393, 377, '_elementor_edit_mode', 'builder'),
(3394, 377, '_elementor_template_type', 'wp-page'),
(3395, 377, '_elementor_version', '3.35.0'),
(3396, 377, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3397, 377, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4095, 447, '_wp_page_template', 'elementor_header_footer'),
(2460, 285, '_wp_page_template', 'elementor_header_footer'),
(2461, 285, '_elementor_edit_mode', 'builder'),
(2462, 285, '_elementor_template_type', 'wp-page'),
(2463, 285, '_elementor_version', '3.35.0'),
(2464, 285, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2465, 285, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2434, 282, '_elementor_page_settings', 'a:0:{}'),
(3623, 395, '_elementor_page_settings', 'a:0:{}'),
(7644, 806, '_elementor_page_settings', 'a:0:{}'),
(7645, 807, '_wp_page_template', 'elementor_header_footer'),
(7646, 807, '_elementor_edit_mode', 'builder'),
(7647, 807, '_elementor_template_type', 'wp-page'),
(7648, 807, '_elementor_version', '3.35.0'),
(7649, 807, '_elementor_pro_version', '3.35.0'),
(7650, 807, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(2437, 283, '_wp_page_template', 'elementor_header_footer'),
(2438, 283, '_elementor_edit_mode', 'builder'),
(2439, 283, '_elementor_template_type', 'wp-page'),
(2440, 283, '_elementor_version', '3.35.0'),
(2441, 283, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2442, 283, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}]},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2444, 283, '_elementor_page_settings', 'a:0:{}'),
(7500, 790, '_elementor_page_settings', 'a:0:{}'),
(7510, 792, '_wp_page_template', 'elementor_header_footer'),
(7511, 792, '_elementor_edit_mode', 'builder'),
(7512, 792, '_elementor_template_type', 'wp-page'),
(7513, 792, '_elementor_version', '3.35.0'),
(7514, 792, '_elementor_pro_version', '3.35.0'),
(7515, 792, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We focus on the whole person, not just daily needs.\",\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(3616, 395, '_wp_page_template', 'elementor_header_footer'),
(3617, 395, '_elementor_edit_mode', 'builder'),
(3618, 395, '_elementor_template_type', 'wp-page'),
(3619, 395, '_elementor_version', '3.35.0'),
(3620, 395, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3621, 395, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2447, 284, '_wp_page_template', 'elementor_header_footer'),
(2448, 284, '_elementor_edit_mode', 'builder'),
(2449, 284, '_elementor_template_type', 'wp-page'),
(2450, 284, '_elementor_version', '3.35.0'),
(2451, 284, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2452, 284, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3366, 374, '_elementor_page_settings', 'a:0:{}'),
(2491, 288, '_wp_page_template', 'elementor_header_footer'),
(2492, 288, '_elementor_edit_mode', 'builder'),
(2493, 288, '_elementor_template_type', 'wp-page'),
(2494, 288, '_elementor_version', '3.35.0'),
(2495, 288, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2496, 288, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7785, 824, '_elementor_pro_version', '3.35.0'),
(7786, 824, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2467, 285, '_elementor_page_settings', 'a:0:{}'),
(3613, 394, '_elementor_page_settings', 'a:0:{}'),
(7652, 807, '_elementor_page_settings', 'a:0:{}'),
(7654, 808, '_elementor_edit_mode', 'builder'),
(7655, 808, '_elementor_template_type', 'wp-page'),
(7656, 808, '_elementor_version', '3.35.0'),
(7657, 808, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7658, 808, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(2470, 286, '_wp_page_template', 'elementor_header_footer'),
(2471, 286, '_elementor_edit_mode', 'builder'),
(2472, 286, '_elementor_template_type', 'wp-page'),
(2473, 286, '_elementor_version', '3.35.0'),
(2474, 286, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2475, 286, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7780, 823, '_elementor_page_settings', 'a:0:{}'),
(7781, 824, '_wp_page_template', 'elementor_header_footer'),
(7782, 824, '_elementor_edit_mode', 'builder'),
(7783, 824, '_elementor_template_type', 'wp-page'),
(7784, 824, '_elementor_version', '3.35.0'),
(2477, 286, '_elementor_page_settings', 'a:0:{}'),
(7517, 792, '_elementor_page_settings', 'a:0:{}'),
(7518, 793, '_wp_page_template', 'elementor_header_footer'),
(7519, 793, '_elementor_edit_mode', 'builder'),
(7520, 793, '_elementor_template_type', 'wp-page'),
(7521, 793, '_elementor_version', '3.35.0'),
(7522, 793, '_elementor_pro_version', '3.35.0'),
(7523, 793, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We focus on the whole person, not just daily needs.\",\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4841, 519, '_elementor_source', 'post'),
(4842, 519, '_elementor_edit_mode', 'builder'),
(4843, 519, '_elementor_template_type', 'footer'),
(4844, 519, '_elementor_version', '3.35.0'),
(4845, 519, '_elementor_pro_version', '3.35.0'),
(4846, 519, '_wp_page_template', 'default'),
(4847, 519, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7274, 764, '_elementor_page_settings', 'a:0:{}'),
(7275, 765, '_wp_page_template', 'elementor_header_footer'),
(7276, 765, '_elementor_edit_mode', 'builder'),
(7277, 765, '_elementor_template_type', 'wp-page'),
(7278, 765, '_elementor_version', '3.35.0'),
(7279, 765, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7280, 765, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(2480, 287, '_wp_page_template', 'elementor_header_footer'),
(2481, 287, '_elementor_edit_mode', 'builder'),
(2482, 287, '_elementor_template_type', 'wp-page'),
(2483, 287, '_elementor_version', '3.35.0'),
(2484, 287, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2485, 287, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}]},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7772, 822, '_elementor_page_settings', 'a:0:{}'),
(7773, 823, '_wp_page_template', 'elementor_header_footer'),
(7774, 823, '_elementor_edit_mode', 'builder'),
(7775, 823, '_elementor_template_type', 'wp-page'),
(7776, 823, '_elementor_version', '3.35.0'),
(7777, 823, '_elementor_pro_version', '3.35.0'),
(7778, 823, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3369, 375, '_wp_page_template', 'elementor_header_footer'),
(3370, 375, '_elementor_edit_mode', 'builder'),
(3371, 375, '_elementor_template_type', 'wp-page'),
(3372, 375, '_elementor_version', '3.35.0'),
(3373, 375, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3374, 375, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/index.php\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2506, 289, '_elementor_page_settings', 'a:0:{}'),
(2507, 290, '_wp_page_template', 'elementor_header_footer'),
(2508, 290, '_elementor_edit_mode', 'builder'),
(2509, 290, '_elementor_template_type', 'wp-page'),
(2510, 290, '_elementor_version', '3.35.0'),
(2511, 290, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2512, 290, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2795, 315, '_wp_page_template', 'elementor_header_footer'),
(2796, 315, '_elementor_edit_mode', 'builder'),
(2797, 315, '_elementor_template_type', 'wp-page'),
(2798, 315, '_elementor_version', '3.35.0'),
(2799, 315, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2800, 315, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2845, 320, '_wp_page_template', 'elementor_header_footer'),
(2825, 318, '_wp_page_template', 'elementor_header_footer'),
(2826, 318, '_elementor_edit_mode', 'builder'),
(2827, 318, '_elementor_template_type', 'wp-page'),
(2828, 318, '_elementor_version', '3.35.0'),
(2829, 318, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2830, 318, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2891, 324, '_wp_page_template', 'elementor_header_footer'),
(7863, 833, '_wp_page_template', 'elementor_header_footer'),
(7864, 833, '_elementor_edit_mode', 'builder'),
(7865, 833, '_elementor_template_type', 'wp-page'),
(7866, 833, '_elementor_version', '3.35.0'),
(7867, 833, '_elementor_pro_version', '3.35.0'),
(7868, 833, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3045, 337, '_wp_page_template', 'elementor_header_footer'),
(3046, 337, '_elementor_edit_mode', 'builder'),
(3047, 337, '_elementor_template_type', 'wp-page'),
(3048, 337, '_elementor_version', '3.35.0'),
(3049, 337, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3050, 337, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2518, 291, '_elementor_source', 'post'),
(2519, 291, '_elementor_edit_mode', 'builder'),
(2520, 291, '_elementor_template_type', 'header'),
(2521, 291, '_elementor_version', '3.35.5'),
(2522, 291, '_elementor_pro_version', '3.35.1'),
(2523, 291, '_astra_content_layout_flag', 'disabled'),
(2525, 291, 'ast-title-bar-display', 'disabled'),
(2526, 291, 'ast-featured-img', 'disabled'),
(2527, 291, 'ast-site-content-layout', 'full-width-container'),
(2528, 291, 'site-sidebar-layout', 'no-sidebar'),
(2552, 291, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":1163,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2530, 291, '_edit_lock', '1771487211:1'),
(4896, 524, '_elementor_template_type', 'container'),
(4897, 524, '_elementor_version', '3.35.0'),
(4898, 524, '_elementor_pro_version', '3.35.0'),
(4899, 524, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4900, 524, '_elementor_data', '[{\"id\":\"c24a57c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76042ab0\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6af928b2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f3a1aae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36df11aa\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e9b805f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6275c746\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5035c10f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38247e1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f4dcfa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4901, 525, '_elementor_edit_mode', 'builder'),
(4902, 525, '_elementor_template_type', 'container'),
(4903, 525, '_elementor_version', '3.35.0'),
(4904, 525, '_elementor_pro_version', '3.35.0'),
(4905, 525, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4906, 525, '_elementor_data', '[{\"id\":\"c24a57c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76042ab0\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"881c232\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"599ff0c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"09abc3b\"}],\"pp_display_conditions\":[{\"_id\":\"d2c06f0\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6af928b2\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInLeft\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f3a1aae\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"36df11aa\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#A5957A\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor2\",\"_border_color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3e9b805f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"XX-XXX-XXX-XXX-XX\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@catcafe.ocm\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:info@catcafe.ocm\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6275c746\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\",\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor5\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor1\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"5035c10f\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38247e1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f4dcfa\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_type\":\"text\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\",\"placeholder\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"attachment_type\":\"link\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"selected_button_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4908, 524, '_elementor_controls_usage', 'a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:1;s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:1;s:10:\"link_click\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:2;s:21:\"box_shadow_box_shadow\";i:2;s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(4916, 526, '_elementor_page_settings', 'a:0:{}'),
(4917, 527, '_wp_page_template', 'elementor_header_footer'),
(4919, 527, '_elementor_edit_mode', 'builder'),
(4920, 527, '_elementor_template_type', 'wp-page'),
(4921, 527, '_elementor_version', '3.35.0'),
(4922, 527, '_elementor_pro_version', '3.35.0'),
(4923, 527, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4924, 527, '_elementor_page_settings', 'a:0:{}'),
(4925, 528, '_wp_page_template', 'elementor_header_footer'),
(4927, 528, '_elementor_edit_mode', 'builder'),
(4928, 528, '_elementor_template_type', 'wp-page'),
(4929, 528, '_elementor_version', '3.35.0'),
(4930, 528, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4931, 528, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3598, 393, '_wp_page_template', 'default'),
(3599, 393, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3600, 393, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9660, 1012, '_elementor_source', 'post'),
(9661, 1012, '_elementor_edit_mode', 'builder'),
(9662, 1012, '_elementor_template_type', 'header'),
(9663, 1012, '_elementor_version', '3.35.0'),
(9664, 1012, '_elementor_pro_version', '3.35.0'),
(9665, 1012, '_wp_page_template', 'default'),
(9666, 1012, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2609, 299, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2610, 299, '_elementor_page_settings', 'a:0:{}'),
(2621, 300, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3593, 393, '_elementor_source', 'post'),
(3594, 393, '_elementor_edit_mode', 'builder'),
(3595, 393, '_elementor_template_type', 'footer'),
(3596, 393, '_elementor_version', '3.35.0'),
(3597, 393, '_elementor_pro_version', '3.35.0'),
(3587, 392, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(3561, 390, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7686, 812, '_wp_page_template', 'elementor_header_footer'),
(7666, 810, '_wp_page_template', 'elementor_header_footer'),
(7667, 810, '_elementor_edit_mode', 'builder'),
(7668, 810, '_elementor_template_type', 'wp-page');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7669, 810, '_elementor_version', '3.35.0'),
(7670, 810, '_elementor_pro_version', '3.35.0'),
(7671, 810, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(4895, 524, '_elementor_edit_mode', 'builder'),
(2631, 301, '_elementor_source', 'post'),
(2632, 301, '_elementor_edit_mode', 'builder'),
(2633, 301, '_elementor_template_type', 'footer'),
(2634, 301, '_elementor_version', '3.35.5'),
(2635, 301, '_elementor_pro_version', '3.35.1'),
(2636, 301, '_astra_content_layout_flag', 'disabled'),
(2638, 301, 'ast-title-bar-display', 'disabled'),
(2639, 301, 'ast-featured-img', 'disabled'),
(2640, 301, 'ast-site-content-layout', 'full-width-container'),
(2641, 301, 'site-sidebar-layout', 'no-sidebar');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2651, 301, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1134,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/privacy-notes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(2643, 301, '_edit_lock', '1771485176:1'),
(3496, 385, '_elementor_source', 'post'),
(3497, 385, '_elementor_edit_mode', 'builder'),
(3498, 385, '_elementor_template_type', 'footer'),
(3499, 385, '_elementor_version', '3.35.0'),
(3500, 385, '_elementor_pro_version', '3.35.0'),
(3501, 385, '_wp_page_template', 'default'),
(3502, 385, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7673, 810, '_elementor_page_settings', 'a:0:{}'),
(3509, 386, '_elementor_source', 'post'),
(3510, 386, '_elementor_edit_mode', 'builder'),
(3511, 386, '_elementor_template_type', 'footer'),
(3512, 386, '_elementor_version', '3.35.0'),
(3513, 386, '_elementor_pro_version', '3.35.0'),
(3514, 386, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3515, 386, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"pp_display_conditions\":[{\"_id\":\"b71782e\"}]},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3489, 384, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6448, 683, '_elementor_page_settings', 'a:0:{}'),
(2835, 319, '_wp_page_template', 'elementor_header_footer'),
(2836, 319, '_elementor_edit_mode', 'builder'),
(2837, 319, '_elementor_template_type', 'wp-page'),
(2838, 319, '_elementor_version', '3.35.0'),
(2839, 319, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2840, 319, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2842, 319, '_elementor_page_settings', 'a:0:{}'),
(7525, 793, '_elementor_page_settings', 'a:0:{}'),
(7526, 794, '_wp_page_template', 'elementor_header_footer'),
(7527, 794, '_elementor_edit_mode', 'builder'),
(7528, 794, '_elementor_template_type', 'wp-page'),
(7529, 794, '_elementor_version', '3.35.0'),
(7530, 794, '_elementor_pro_version', '3.35.0'),
(7531, 794, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4096, 447, '_elementor_edit_mode', 'builder'),
(4097, 447, '_elementor_template_type', 'wp-page'),
(4098, 447, '_elementor_version', '3.35.0'),
(4099, 447, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4100, 447, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3432, 380, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7676, 811, '_wp_page_template', 'elementor_header_footer'),
(7677, 811, '_elementor_edit_mode', 'builder'),
(7678, 811, '_elementor_template_type', 'wp-page'),
(7679, 811, '_elementor_version', '3.35.0'),
(7680, 811, '_elementor_pro_version', '3.35.0'),
(7681, 811, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(2846, 320, '_elementor_edit_mode', 'builder'),
(2847, 320, '_elementor_template_type', 'wp-page'),
(2848, 320, '_elementor_version', '3.35.0'),
(2849, 320, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2850, 320, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3679, 401, '_wp_page_template', 'default'),
(3680, 401, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"}],\"isInner\":false}]'),
(3687, 402, '_elementor_source', 'post'),
(3688, 402, '_elementor_edit_mode', 'builder'),
(3689, 402, '_elementor_template_type', 'header'),
(3690, 402, '_elementor_version', '3.35.0'),
(3691, 402, '_elementor_pro_version', '3.35.0'),
(3692, 402, '_wp_page_template', 'default'),
(3693, 402, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\"},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(3694, 402, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(2944, 329, '_wp_page_template', 'elementor_header_footer'),
(2911, 326, '_wp_page_template', 'elementor_header_footer'),
(2892, 324, '_elementor_edit_mode', 'builder'),
(2893, 324, '_elementor_template_type', 'wp-page'),
(2894, 324, '_elementor_version', '3.35.0'),
(2895, 324, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2896, 324, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2865, 321, '_elementor_page_settings', 'a:0:{}'),
(7683, 811, '_elementor_page_settings', 'a:0:{}'),
(2868, 322, '_wp_page_template', 'elementor_header_footer'),
(2869, 322, '_elementor_edit_mode', 'builder'),
(2870, 322, '_elementor_template_type', 'wp-page'),
(2871, 322, '_elementor_version', '3.35.0'),
(2872, 322, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2873, 322, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2875, 322, '_elementor_page_settings', 'a:0:{}'),
(7687, 812, '_elementor_edit_mode', 'builder'),
(7688, 812, '_elementor_template_type', 'wp-page'),
(7689, 812, '_elementor_version', '3.35.0'),
(7690, 812, '_elementor_pro_version', '3.35.0'),
(7691, 812, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(3412, 379, '_wp_page_template', 'elementor_header_footer'),
(3413, 379, '_elementor_edit_mode', 'builder'),
(3414, 379, '_elementor_template_type', 'wp-page'),
(3415, 379, '_elementor_version', '3.35.0'),
(3416, 379, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3417, 379, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3055, 338, '_wp_page_template', 'elementor_header_footer'),
(3056, 338, '_elementor_edit_mode', 'builder'),
(2878, 323, '_wp_page_template', 'elementor_header_footer'),
(2879, 323, '_elementor_edit_mode', 'builder'),
(2880, 323, '_elementor_template_type', 'wp-page'),
(2881, 323, '_elementor_version', '3.35.0'),
(2882, 323, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2883, 323, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3300, 368, '_elementor_page_settings', 'a:0:{}'),
(7840, 831, '_wp_page_template', 'elementor_header_footer'),
(7841, 831, '_elementor_edit_mode', 'builder'),
(7842, 831, '_elementor_template_type', 'wp-page'),
(7843, 831, '_elementor_version', '3.35.0'),
(7844, 831, '_elementor_pro_version', '3.35.0'),
(7845, 831, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(2924, 327, '_wp_page_template', 'elementor_header_footer'),
(2925, 327, '_elementor_edit_mode', 'builder'),
(2926, 327, '_elementor_template_type', 'wp-page'),
(2927, 327, '_elementor_version', '3.35.0'),
(2928, 327, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2929, 327, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2898, 324, '_elementor_page_settings', 'a:0:{}'),
(3409, 378, '_elementor_page_settings', 'a:0:{}'),
(2901, 325, '_wp_page_template', 'elementor_header_footer'),
(2902, 325, '_elementor_edit_mode', 'builder'),
(2903, 325, '_elementor_template_type', 'wp-page'),
(2904, 325, '_elementor_version', '3.35.0'),
(2905, 325, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2906, 325, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2908, 325, '_elementor_page_settings', 'a:0:{}'),
(7712, 814, '_elementor_page_settings', 'a:0:{}'),
(7713, 815, '_wp_page_template', 'elementor_header_footer'),
(7714, 815, '_elementor_edit_mode', 'builder'),
(7715, 815, '_elementor_template_type', 'wp-page'),
(7716, 815, '_elementor_version', '3.35.0'),
(7717, 815, '_elementor_pro_version', '3.35.0'),
(7718, 815, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3402, 378, '_wp_page_template', 'elementor_header_footer'),
(3403, 378, '_elementor_edit_mode', 'builder'),
(3404, 378, '_elementor_template_type', 'wp-page'),
(3405, 378, '_elementor_version', '3.35.0'),
(3406, 378, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3407, 378, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2912, 326, '_elementor_edit_mode', 'builder'),
(2913, 326, '_elementor_template_type', 'wp-page'),
(2914, 326, '_elementor_version', '3.35.0'),
(2915, 326, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2916, 326, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3303, 369, '_wp_page_template', 'elementor_header_footer'),
(3304, 369, '_elementor_edit_mode', 'builder'),
(3305, 369, '_elementor_template_type', 'wp-page'),
(3306, 369, '_elementor_version', '3.35.0'),
(3307, 369, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3308, 369, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6457, 684, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(3310, 369, '_elementor_page_settings', 'a:0:{}'),
(2977, 332, '_wp_page_template', 'elementor_header_footer'),
(2957, 330, '_wp_page_template', 'elementor_header_footer'),
(2958, 330, '_elementor_edit_mode', 'builder'),
(2959, 330, '_elementor_template_type', 'wp-page'),
(2960, 330, '_elementor_version', '3.35.0'),
(2961, 330, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2962, 330, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2931, 327, '_elementor_page_settings', 'a:0:{}'),
(3399, 377, '_elementor_page_settings', 'a:0:{}'),
(2934, 328, '_wp_page_template', 'elementor_header_footer'),
(2935, 328, '_elementor_edit_mode', 'builder'),
(2936, 328, '_elementor_template_type', 'wp-page'),
(2937, 328, '_elementor_version', '3.35.0'),
(2938, 328, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2939, 328, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"50\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2941, 328, '_elementor_page_settings', 'a:0:{}'),
(7740, 819, '_wp_page_template', 'elementor_header_footer'),
(7741, 819, '_elementor_edit_mode', 'builder'),
(7742, 819, '_elementor_template_type', 'wp-page'),
(7743, 819, '_elementor_version', '3.35.0'),
(7744, 819, '_elementor_pro_version', '3.35.0'),
(7745, 819, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8904, 938, '_wp_page_template', 'elementor_header_footer'),
(8884, 936, '_wp_page_template', 'elementor_header_footer'),
(8885, 936, '_elementor_edit_mode', 'builder'),
(8886, 936, '_elementor_template_type', 'wp-page'),
(8887, 936, '_elementor_version', '3.35.0'),
(8888, 936, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8889, 936, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11272, 1158, '_elementor_page_settings', 'a:0:{}'),
(7725, 816, '_wp_attached_file', '2026/02/clock_16087624.svg'),
(7726, 816, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:876;s:5:\"width\";i:24;s:6:\"height\";i:24;}'),
(3606, 394, '_wp_page_template', 'elementor_header_footer'),
(3607, 394, '_elementor_edit_mode', 'builder'),
(3608, 394, '_elementor_template_type', 'wp-page'),
(3609, 394, '_elementor_version', '3.35.0'),
(3610, 394, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3611, 394, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2945, 329, '_elementor_edit_mode', 'builder'),
(2946, 329, '_elementor_template_type', 'wp-page'),
(2947, 329, '_elementor_version', '3.35.0'),
(2948, 329, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2949, 329, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7837, 830, '_elementor_page_settings', 'a:0:{}'),
(3313, 370, '_wp_page_template', 'elementor_header_footer'),
(3314, 370, '_elementor_edit_mode', 'builder'),
(3315, 370, '_elementor_template_type', 'wp-page'),
(3316, 370, '_elementor_version', '3.35.0'),
(3317, 370, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3318, 370, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3010, 335, '_wp_page_template', 'elementor_header_footer'),
(2990, 333, '_wp_page_template', 'elementor_header_footer'),
(2991, 333, '_elementor_edit_mode', 'builder'),
(2992, 333, '_elementor_template_type', 'wp-page'),
(2993, 333, '_elementor_version', '3.35.0'),
(2994, 333, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2995, 333, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2964, 330, '_elementor_page_settings', 'a:0:{}'),
(2967, 331, '_wp_page_template', 'elementor_header_footer'),
(2968, 331, '_elementor_edit_mode', 'builder'),
(2969, 331, '_elementor_template_type', 'wp-page'),
(2970, 331, '_elementor_version', '3.35.0'),
(2971, 331, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2972, 331, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2974, 331, '_elementor_page_settings', 'a:0:{}'),
(7756, 821, '_wp_page_template', 'elementor_header_footer'),
(7757, 821, '_elementor_edit_mode', 'builder'),
(7758, 821, '_elementor_template_type', 'wp-page'),
(7759, 821, '_elementor_version', '3.35.0'),
(7760, 821, '_elementor_pro_version', '3.35.0'),
(7761, 821, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7737, 818, '_wp_attached_file', '2026/02/truck_10044945.svg'),
(7738, 818, '_wp_attachment_metadata', 'a:3:{s:8:\"filesize\";i:1820;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),
(7747, 819, '_elementor_page_settings', 'a:0:{}'),
(7748, 820, '_wp_page_template', 'elementor_header_footer'),
(7749, 820, '_elementor_edit_mode', 'builder'),
(7750, 820, '_elementor_template_type', 'wp-page'),
(7751, 820, '_elementor_version', '3.35.0'),
(7752, 820, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7753, 820, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3379, 376, '_wp_page_template', 'elementor_header_footer'),
(3380, 376, '_elementor_edit_mode', 'builder'),
(3381, 376, '_elementor_template_type', 'wp-page'),
(3382, 376, '_elementor_version', '3.35.0'),
(3383, 376, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3384, 376, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2978, 332, '_elementor_edit_mode', 'builder'),
(2979, 332, '_elementor_template_type', 'wp-page'),
(2980, 332, '_elementor_version', '3.35.0'),
(2981, 332, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2982, 332, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3376, 375, '_elementor_page_settings', 'a:0:{}'),
(7755, 820, '_elementor_page_settings', 'a:0:{}'),
(7765, 822, '_wp_page_template', 'elementor_header_footer'),
(7766, 822, '_elementor_edit_mode', 'builder'),
(7767, 822, '_elementor_template_type', 'wp-page'),
(7768, 822, '_elementor_version', '3.35.0'),
(7769, 822, '_elementor_pro_version', '3.35.0'),
(7770, 822, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}]},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(3035, 336, '_wp_page_template', 'elementor_header_footer'),
(3036, 336, '_elementor_edit_mode', 'builder'),
(3037, 336, '_elementor_template_type', 'wp-page'),
(3038, 336, '_elementor_version', '3.35.0'),
(3039, 336, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3040, 336, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2997, 333, '_elementor_page_settings', 'a:0:{}'),
(6458, 684, '_elementor_page_settings', 'a:0:{}'),
(6464, 685, '_elementor_template_type', 'wp-page'),
(6465, 685, '_elementor_version', '3.35.0'),
(6466, 685, '_elementor_pro_version', '3.35.0'),
(6467, 685, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Adult Day Services \\n Home Care Services  \\nTransportation (non-medical) \",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6499, 688, '_elementor_edit_mode', 'builder'),
(6500, 688, '_elementor_template_type', 'wp-page'),
(6501, 688, '_elementor_version', '3.35.0'),
(6502, 688, '_elementor_pro_version', '3.35.0'),
(6503, 688, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(3000, 334, '_wp_page_template', 'elementor_header_footer'),
(3001, 334, '_elementor_edit_mode', 'builder'),
(3002, 334, '_elementor_template_type', 'wp-page'),
(3003, 334, '_elementor_version', '3.35.0'),
(3004, 334, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3005, 334, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3007, 334, '_elementor_page_settings', 'a:0:{}'),
(4634, 352, '_elementor_page_settings', 'a:0:{}'),
(4635, 352, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9311, 975, '_elementor_version', '3.35.0'),
(9312, 975, '_elementor_pro_version', '3.35.0'),
(9313, 975, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(3011, 335, '_elementor_edit_mode', 'builder'),
(3012, 335, '_elementor_template_type', 'wp-page'),
(3013, 335, '_elementor_version', '3.35.0'),
(3014, 335, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3015, 335, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}]},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\\n\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3051, 337, '_elementor_page_settings', 'a:0:{}'),
(7860, 832, '_elementor_page_settings', 'a:0:{}'),
(3041, 336, '_elementor_page_settings', 'a:0:{}'),
(6637, 699, '_wp_page_template', 'elementor_header_footer'),
(6638, 699, '_elementor_edit_mode', 'builder'),
(6639, 699, '_elementor_template_type', 'wp-page'),
(6640, 699, '_elementor_version', '3.35.0'),
(6641, 699, '_elementor_pro_version', '3.35.0'),
(6642, 699, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4671, 20, '_elementor_edit_mode', 'builder'),
(4672, 20, '_astra_content_layout_flag', 'disabled'),
(4674, 20, 'ast-title-bar-display', 'disabled'),
(4675, 20, 'ast-featured-img', 'disabled'),
(4676, 20, '_elementor_template_type', 'wp-page'),
(4677, 20, '_elementor_version', '3.35.5'),
(4678, 20, '_elementor_pro_version', '3.35.1'),
(4694, 20, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4680, 503, '_wp_page_template', 'elementor_header_footer'),
(6650, 700, '_elementor_version', '3.35.0'),
(4682, 503, '_elementor_edit_mode', 'builder'),
(4683, 503, '_elementor_template_type', 'wp-page'),
(4684, 503, '_elementor_version', '3.35.0'),
(4685, 503, '_elementor_pro_version', '3.35.0'),
(4686, 503, '_elementor_page_settings', 'a:0:{}'),
(4687, 504, '_wp_page_template', 'elementor_header_footer'),
(6651, 700, '_elementor_pro_version', '3.35.0'),
(4689, 504, '_elementor_edit_mode', 'builder'),
(4690, 504, '_elementor_template_type', 'wp-page'),
(4691, 504, '_elementor_version', '3.35.0'),
(4692, 504, '_elementor_pro_version', '3.35.0'),
(4693, 504, '_elementor_page_settings', 'a:0:{}'),
(4695, 505, '_wp_page_template', 'elementor_header_footer'),
(6652, 700, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(4697, 505, '_elementor_edit_mode', 'builder'),
(4698, 505, '_elementor_template_type', 'wp-page'),
(4699, 505, '_elementor_version', '3.35.0'),
(4700, 505, '_elementor_pro_version', '3.35.0'),
(4701, 505, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}]},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}]},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4704, 506, '_wp_page_template', 'elementor_header_footer'),
(4706, 506, '_elementor_edit_mode', 'builder'),
(4707, 506, '_elementor_template_type', 'wp-page'),
(4708, 506, '_elementor_version', '3.35.0'),
(4709, 506, '_elementor_pro_version', '3.35.0'),
(4710, 506, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}]},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}]},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4711, 506, '_elementor_page_settings', 'a:0:{}'),
(4712, 507, '_wp_page_template', 'elementor_header_footer'),
(4714, 507, '_elementor_edit_mode', 'builder'),
(4715, 507, '_elementor_template_type', 'wp-page'),
(4716, 507, '_elementor_version', '3.35.0'),
(4717, 507, '_elementor_pro_version', '3.35.0'),
(4718, 507, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}]},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}]},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4719, 507, '_elementor_page_settings', 'a:0:{}'),
(4720, 508, '_wp_page_template', 'elementor_header_footer'),
(4722, 508, '_elementor_edit_mode', 'builder'),
(4723, 508, '_elementor_template_type', 'wp-page'),
(4724, 508, '_elementor_version', '3.35.0'),
(4725, 508, '_elementor_pro_version', '3.35.0'),
(4726, 508, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4729, 509, '_wp_page_template', 'elementor_header_footer'),
(4731, 509, '_elementor_edit_mode', 'builder'),
(4732, 509, '_elementor_template_type', 'wp-page'),
(4733, 509, '_elementor_version', '3.35.0'),
(4734, 509, '_elementor_pro_version', '3.35.0'),
(4735, 509, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4736, 509, '_elementor_page_settings', 'a:0:{}'),
(4737, 510, '_wp_page_template', 'elementor_header_footer'),
(4739, 510, '_elementor_edit_mode', 'builder'),
(4740, 510, '_elementor_template_type', 'wp-page'),
(4741, 510, '_elementor_version', '3.35.0'),
(4742, 510, '_elementor_pro_version', '3.35.0'),
(4743, 510, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4744, 510, '_elementor_page_settings', 'a:0:{}'),
(4745, 511, '_wp_page_template', 'elementor_header_footer'),
(4747, 511, '_elementor_edit_mode', 'builder'),
(4748, 511, '_elementor_template_type', 'wp-page'),
(4749, 511, '_elementor_version', '3.35.0'),
(4750, 511, '_elementor_pro_version', '3.35.0'),
(4751, 511, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10175, 1060, '_wp_page_template', 'elementor_header_footer'),
(7944, 842, '_wp_page_template', 'elementor_header_footer'),
(7945, 842, '_elementor_edit_mode', 'builder'),
(7946, 842, '_elementor_template_type', 'wp-page'),
(7947, 842, '_elementor_version', '3.35.0'),
(7948, 842, '_elementor_pro_version', '3.35.0'),
(7949, 842, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(4763, 512, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6653, 700, '_elementor_page_settings', 'a:0:{}'),
(6690, 703, '_wp_page_template', 'elementor_header_footer'),
(6691, 703, '_elementor_edit_mode', 'builder'),
(6692, 703, '_elementor_template_type', 'wp-page'),
(6693, 703, '_elementor_version', '3.35.0'),
(6694, 703, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6695, 703, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4767, 512, '_elementor_screenshot_failed', '2026-02-05 07:14:40'),
(4959, 532, '_elementor_source', 'post'),
(4960, 532, '_elementor_edit_mode', 'builder'),
(4961, 532, '_elementor_template_type', 'footer'),
(4962, 532, '_elementor_version', '3.35.0'),
(4963, 532, '_elementor_pro_version', '3.35.0'),
(4964, 532, '_wp_page_template', 'default'),
(4965, 532, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4773, 24, '_elementor_edit_mode', 'builder'),
(4774, 24, '_astra_content_layout_flag', 'disabled'),
(4776, 24, 'ast-title-bar-display', 'disabled'),
(4777, 24, 'ast-featured-img', 'disabled'),
(4778, 24, '_elementor_template_type', 'wp-page'),
(4779, 24, '_elementor_version', '3.35.5'),
(4780, 24, '_elementor_pro_version', '3.35.1'),
(4796, 24, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1134,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4782, 513, '_wp_page_template', 'elementor_header_footer');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4784, 513, '_elementor_edit_mode', 'builder'),
(4785, 513, '_elementor_template_type', 'wp-page'),
(4786, 513, '_elementor_version', '3.35.0'),
(4787, 513, '_elementor_pro_version', '3.35.0'),
(4788, 513, '_elementor_page_settings', 'a:0:{}'),
(4789, 514, '_wp_page_template', 'elementor_header_footer'),
(4791, 514, '_elementor_edit_mode', 'builder'),
(4792, 514, '_elementor_template_type', 'wp-page'),
(4793, 514, '_elementor_version', '3.35.0'),
(4794, 514, '_elementor_pro_version', '3.35.0'),
(4795, 514, '_elementor_page_settings', 'a:0:{}'),
(4885, 523, '_wp_page_template', 'elementor_header_footer'),
(4887, 523, '_elementor_edit_mode', 'builder'),
(4888, 523, '_elementor_template_type', 'wp-page'),
(4889, 523, '_elementor_version', '3.35.0'),
(4890, 523, '_elementor_pro_version', '3.35.0'),
(4891, 523, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4828, 518, '_wp_page_template', 'elementor_header_footer'),
(4797, 515, '_wp_page_template', 'elementor_header_footer'),
(4799, 515, '_elementor_edit_mode', 'builder'),
(4800, 515, '_elementor_template_type', 'wp-page'),
(4801, 515, '_elementor_version', '3.35.0'),
(4802, 515, '_elementor_pro_version', '3.35.0'),
(4803, 515, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"768c45d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4808, 516, '_wp_page_template', 'elementor_header_footer'),
(4810, 516, '_elementor_edit_mode', 'builder'),
(4811, 516, '_elementor_template_type', 'wp-page'),
(4812, 516, '_elementor_version', '3.35.0'),
(4813, 516, '_elementor_pro_version', '3.35.0'),
(4814, 516, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"768c45d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4909, 526, '_wp_page_template', 'elementor_header_footer'),
(4867, 521, '_wp_page_template', 'elementor_header_footer'),
(4869, 521, '_elementor_edit_mode', 'builder'),
(4870, 521, '_elementor_template_type', 'wp-page'),
(4871, 521, '_elementor_version', '3.35.0'),
(4872, 521, '_elementor_pro_version', '3.35.0'),
(4873, 521, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1aa017b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Apply by submitting your resume through our website or contacting our office.<\\/em><\\/p>\",\"pp_display_conditions\":[{\"_id\":\"575ed02\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4815, 516, '_elementor_page_settings', 'a:0:{}'),
(7505, 791, '_elementor_pro_version', '3.35.0'),
(7460, 786, '_wp_page_template', 'elementor_header_footer'),
(7461, 786, '_elementor_edit_mode', 'builder'),
(7462, 786, '_elementor_template_type', 'wp-page'),
(7463, 786, '_elementor_version', '3.35.0'),
(7464, 786, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7465, 786, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4818, 517, '_wp_page_template', 'elementor_header_footer'),
(4820, 517, '_elementor_edit_mode', 'builder'),
(4821, 517, '_elementor_template_type', 'wp-page'),
(4822, 517, '_elementor_version', '3.35.0'),
(4823, 517, '_elementor_pro_version', '3.35.0'),
(4824, 517, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"768c45d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4825, 517, '_elementor_page_settings', 'a:0:{}'),
(4830, 518, '_elementor_edit_mode', 'builder'),
(4831, 518, '_elementor_template_type', 'wp-page'),
(4832, 518, '_elementor_version', '3.35.0'),
(4833, 518, '_elementor_pro_version', '3.35.0'),
(4834, 518, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1aa017b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Apply by submitting your resume through our website or contacting our office.<\\/em><\\/p>\",\"pp_display_conditions\":[{\"_id\":\"575ed02\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4911, 526, '_elementor_edit_mode', 'builder'),
(4912, 526, '_elementor_template_type', 'wp-page'),
(4913, 526, '_elementor_version', '3.35.0'),
(4914, 526, '_elementor_pro_version', '3.35.0'),
(4915, 526, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4848, 519, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5897, 632, '_elementor_source', 'post'),
(5898, 632, '_elementor_edit_mode', 'builder'),
(5899, 632, '_elementor_template_type', 'footer'),
(5900, 632, '_elementor_version', '3.35.0'),
(5901, 632, '_elementor_pro_version', '3.35.0'),
(5902, 632, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5903, 632, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7267, 764, '_wp_page_template', 'elementor_header_footer'),
(7268, 764, '_elementor_edit_mode', 'builder'),
(7269, 764, '_elementor_template_type', 'wp-page'),
(7270, 764, '_elementor_version', '3.35.0'),
(7271, 764, '_elementor_pro_version', '3.35.0'),
(7272, 764, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(4874, 521, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7506, 791, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We focus on the whole person, not just daily needs.\",\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7451, 785, '_wp_page_template', 'elementor_header_footer'),
(7452, 785, '_elementor_edit_mode', 'builder'),
(7453, 785, '_elementor_template_type', 'wp-page'),
(7454, 785, '_elementor_version', '3.35.0'),
(7455, 785, '_elementor_pro_version', '3.35.0'),
(7456, 785, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b783b95\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(4876, 522, '_wp_page_template', 'elementor_header_footer'),
(4878, 522, '_elementor_edit_mode', 'builder'),
(4879, 522, '_elementor_template_type', 'wp-page'),
(4880, 522, '_elementor_version', '3.35.0'),
(4881, 522, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4882, 522, '_elementor_data', '[{\"id\":\"48c63f1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4dcc5e5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"156b041\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1aa017b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Apply by submitting your resume through our website or contacting our office.<\\/em><\\/p>\",\"pp_display_conditions\":[{\"_id\":\"575ed02\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"944d548\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"ce8014e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(4883, 522, '_elementor_page_settings', 'a:0:{}'),
(7450, 784, '_elementor_page_settings', 'a:0:{}'),
(4949, 530, '_elementor_page_settings', 'a:0:{}'),
(4952, 531, '_elementor_edit_mode', 'builder'),
(4953, 531, '_elementor_template_type', 'wp-page'),
(4954, 531, '_elementor_version', '3.35.0'),
(4955, 531, '_elementor_pro_version', '3.35.0'),
(4956, 531, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4990, 535, '_wp_page_template', 'elementor_header_footer'),
(4974, 533, '_wp_page_template', 'elementor_header_footer'),
(4976, 533, '_elementor_edit_mode', 'builder'),
(4977, 533, '_elementor_template_type', 'wp-page'),
(4978, 533, '_elementor_version', '3.35.0'),
(4979, 533, '_elementor_pro_version', '3.35.0'),
(4980, 533, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4966, 532, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6511, 689, '_elementor_source', 'post'),
(6512, 689, '_elementor_edit_mode', 'builder'),
(6513, 689, '_elementor_template_type', 'footer'),
(6514, 689, '_elementor_version', '3.35.0'),
(6515, 689, '_elementor_pro_version', '3.35.0'),
(6516, 689, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6517, 689, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F0F7F8\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(4981, 533, '_elementor_page_settings', 'a:0:{}'),
(4982, 534, '_wp_page_template', 'elementor_header_footer'),
(4984, 534, '_elementor_edit_mode', 'builder'),
(4985, 534, '_elementor_template_type', 'wp-page'),
(4986, 534, '_elementor_version', '3.35.0'),
(4987, 534, '_elementor_pro_version', '3.35.0'),
(4988, 534, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a485751\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4989, 534, '_elementor_page_settings', 'a:0:{}'),
(4992, 535, '_elementor_edit_mode', 'builder'),
(4993, 535, '_elementor_template_type', 'wp-page'),
(4994, 535, '_elementor_version', '3.35.0'),
(4995, 535, '_elementor_pro_version', '3.35.0'),
(4996, 535, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(4999, 536, '_wp_page_template', 'elementor_header_footer'),
(5001, 536, '_elementor_edit_mode', 'builder'),
(5002, 536, '_elementor_template_type', 'wp-page'),
(5003, 536, '_elementor_version', '3.35.0'),
(5004, 536, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5005, 536, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5006, 536, '_elementor_page_settings', 'a:0:{}'),
(5007, 537, '_wp_page_template', 'elementor_header_footer'),
(5009, 537, '_elementor_edit_mode', 'builder'),
(5010, 537, '_elementor_template_type', 'wp-page'),
(5011, 537, '_elementor_version', '3.35.0'),
(5012, 537, '_elementor_pro_version', '3.35.0'),
(5013, 537, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5014, 537, '_elementor_page_settings', 'a:0:{}'),
(5015, 538, '_wp_page_template', 'elementor_header_footer'),
(5017, 538, '_elementor_edit_mode', 'builder'),
(5018, 538, '_elementor_template_type', 'wp-page'),
(5019, 538, '_elementor_version', '3.35.0'),
(5020, 538, '_elementor_pro_version', '3.35.0'),
(5021, 538, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5024, 539, '_wp_page_template', 'elementor_header_footer'),
(6697, 703, '_elementor_page_settings', 'a:0:{}'),
(5026, 539, '_elementor_edit_mode', 'builder'),
(5027, 539, '_elementor_template_type', 'wp-page'),
(5028, 539, '_elementor_version', '3.35.0'),
(5029, 539, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5030, 539, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5031, 539, '_elementor_page_settings', 'a:0:{}'),
(5032, 540, '_wp_page_template', 'elementor_header_footer'),
(5034, 540, '_elementor_edit_mode', 'builder'),
(5035, 540, '_elementor_template_type', 'wp-page'),
(5036, 540, '_elementor_version', '3.35.0'),
(5037, 540, '_elementor_pro_version', '3.35.0'),
(5038, 540, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5039, 540, '_elementor_page_settings', 'a:0:{}'),
(5040, 541, '_wp_page_template', 'elementor_header_footer'),
(5042, 541, '_elementor_edit_mode', 'builder'),
(5043, 541, '_elementor_template_type', 'wp-page'),
(5044, 541, '_elementor_version', '3.35.0'),
(5045, 541, '_elementor_pro_version', '3.35.0'),
(5046, 541, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5071, 544, '_wp_page_template', 'elementor_header_footer'),
(5051, 542, '_wp_page_template', 'elementor_header_footer'),
(5053, 542, '_elementor_edit_mode', 'builder'),
(5054, 542, '_elementor_template_type', 'wp-page'),
(5055, 542, '_elementor_version', '3.35.0'),
(5056, 542, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5057, 542, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5084, 545, '_wp_page_template', 'elementor_header_footer'),
(5086, 545, '_elementor_edit_mode', 'builder'),
(5087, 545, '_elementor_template_type', 'wp-page'),
(5088, 545, '_elementor_version', '3.35.0'),
(5089, 545, '_elementor_pro_version', '3.35.0'),
(5090, 545, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5188, 554, '_elementor_page_settings', 'a:0:{}'),
(5189, 555, '_wp_page_template', 'elementor_header_footer'),
(5191, 555, '_elementor_edit_mode', 'builder'),
(5192, 555, '_elementor_template_type', 'wp-page'),
(5193, 555, '_elementor_version', '3.35.0'),
(5194, 555, '_elementor_pro_version', '3.35.0'),
(5195, 555, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5058, 542, '_elementor_page_settings', 'a:0:{}'),
(5061, 543, '_wp_page_template', 'elementor_header_footer'),
(5063, 543, '_elementor_edit_mode', 'builder'),
(5064, 543, '_elementor_template_type', 'wp-page'),
(5065, 543, '_elementor_version', '3.35.0'),
(5066, 543, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5067, 543, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5068, 543, '_elementor_page_settings', 'a:0:{}'),
(5073, 544, '_elementor_edit_mode', 'builder'),
(5074, 544, '_elementor_template_type', 'wp-page'),
(5075, 544, '_elementor_version', '3.35.0'),
(5076, 544, '_elementor_pro_version', '3.35.0'),
(5077, 544, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(7425, 782, '_elementor_edit_mode', 'builder'),
(7426, 782, '_elementor_template_type', 'wp-page'),
(7427, 782, '_elementor_version', '3.35.0'),
(7428, 782, '_elementor_pro_version', '3.35.0'),
(7429, 782, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5117, 548, '_wp_page_template', 'elementor_header_footer'),
(5119, 548, '_elementor_edit_mode', 'builder'),
(5120, 548, '_elementor_template_type', 'wp-page'),
(5121, 548, '_elementor_version', '3.35.0'),
(5122, 548, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5123, 548, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5091, 545, '_elementor_page_settings', 'a:0:{}'),
(7421, 781, '_elementor_page_settings', 'a:0:{}'),
(5094, 546, '_wp_page_template', 'elementor_header_footer'),
(5096, 546, '_elementor_edit_mode', 'builder'),
(5097, 546, '_elementor_template_type', 'wp-page'),
(5098, 546, '_elementor_version', '3.35.0'),
(5099, 546, '_elementor_pro_version', '3.35.0'),
(5100, 546, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5101, 546, '_elementor_page_settings', 'a:0:{}'),
(7414, 781, '_wp_page_template', 'elementor_header_footer'),
(7415, 781, '_elementor_edit_mode', 'builder'),
(7416, 781, '_elementor_template_type', 'wp-page'),
(7417, 781, '_elementor_version', '3.35.0'),
(7418, 781, '_elementor_pro_version', '3.35.0'),
(7419, 781, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5104, 547, '_wp_page_template', 'elementor_header_footer'),
(5106, 547, '_elementor_edit_mode', 'builder'),
(5107, 547, '_elementor_template_type', 'wp-page'),
(5108, 547, '_elementor_version', '3.35.0'),
(5109, 547, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5110, 547, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5150, 551, '_wp_page_template', 'elementor_header_footer'),
(5152, 551, '_elementor_edit_mode', 'builder'),
(5153, 551, '_elementor_template_type', 'wp-page'),
(5154, 551, '_elementor_version', '3.35.0'),
(5155, 551, '_elementor_pro_version', '3.35.0'),
(5156, 551, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5124, 548, '_elementor_page_settings', 'a:0:{}'),
(7411, 780, '_elementor_page_settings', 'a:0:{}'),
(5127, 549, '_wp_page_template', 'elementor_header_footer'),
(5129, 549, '_elementor_edit_mode', 'builder'),
(5130, 549, '_elementor_template_type', 'wp-page'),
(5131, 549, '_elementor_version', '3.35.0'),
(5132, 549, '_elementor_pro_version', '3.35.0'),
(5133, 549, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5134, 549, '_elementor_page_settings', 'a:0:{}'),
(7435, 783, '_wp_page_template', 'elementor_header_footer'),
(7436, 783, '_elementor_edit_mode', 'builder'),
(7437, 783, '_elementor_template_type', 'wp-page'),
(7438, 783, '_elementor_version', '3.35.0'),
(7439, 783, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7440, 783, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5137, 550, '_wp_page_template', 'elementor_header_footer'),
(5139, 550, '_elementor_edit_mode', 'builder'),
(5140, 550, '_elementor_template_type', 'wp-page'),
(5141, 550, '_elementor_version', '3.35.0'),
(5142, 550, '_elementor_pro_version', '3.35.0'),
(5143, 550, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(7424, 782, '_wp_page_template', 'elementor_header_footer'),
(7404, 780, '_wp_page_template', 'elementor_header_footer'),
(7405, 780, '_elementor_edit_mode', 'builder'),
(7406, 780, '_elementor_template_type', 'wp-page'),
(7407, 780, '_elementor_version', '3.35.0'),
(7408, 780, '_elementor_pro_version', '3.35.0'),
(7409, 780, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7442, 783, '_elementor_page_settings', 'a:0:{}'),
(7443, 784, '_wp_page_template', 'elementor_header_footer'),
(7444, 784, '_elementor_edit_mode', 'builder'),
(7445, 784, '_elementor_template_type', 'wp-page'),
(7446, 784, '_elementor_version', '3.35.0'),
(7447, 784, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7448, 784, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5181, 554, '_wp_page_template', 'elementor_header_footer'),
(5183, 554, '_elementor_edit_mode', 'builder'),
(5184, 554, '_elementor_template_type', 'wp-page'),
(5185, 554, '_elementor_version', '3.35.0'),
(5186, 554, '_elementor_pro_version', '3.35.0'),
(5187, 554, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5157, 551, '_elementor_page_settings', 'a:0:{}'),
(7392, 778, '_elementor_page_settings', 'a:0:{}'),
(7393, 779, '_wp_page_template', 'elementor_header_footer'),
(7394, 779, '_elementor_edit_mode', 'builder'),
(7395, 779, '_elementor_template_type', 'wp-page'),
(7396, 779, '_elementor_version', '3.35.0'),
(7397, 779, '_elementor_pro_version', '3.35.0'),
(7398, 779, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5160, 552, '_wp_page_template', 'elementor_header_footer'),
(5162, 552, '_elementor_edit_mode', 'builder'),
(5163, 552, '_elementor_template_type', 'wp-page'),
(5164, 552, '_elementor_version', '3.35.0'),
(5165, 552, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5166, 552, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}]},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5167, 552, '_elementor_page_settings', 'a:0:{}'),
(5170, 553, '_wp_page_template', 'elementor_header_footer'),
(5172, 553, '_elementor_edit_mode', 'builder'),
(5173, 553, '_elementor_template_type', 'wp-page'),
(5174, 553, '_elementor_version', '3.35.0'),
(5175, 553, '_elementor_pro_version', '3.35.0'),
(5176, 553, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5196, 555, '_elementor_page_settings', 'a:0:{}'),
(5197, 556, '_wp_page_template', 'elementor_header_footer'),
(5199, 556, '_elementor_edit_mode', 'builder'),
(5200, 556, '_elementor_template_type', 'wp-page'),
(5201, 556, '_elementor_version', '3.35.0'),
(5202, 556, '_elementor_pro_version', '3.35.0'),
(5203, 556, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6550, 692, '_wp_page_template', 'elementor_header_footer'),
(6530, 690, '_wp_page_template', 'elementor_header_footer'),
(6531, 690, '_elementor_edit_mode', 'builder'),
(6532, 690, '_elementor_template_type', 'wp-page'),
(6533, 690, '_elementor_version', '3.35.0'),
(6534, 690, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6535, 690, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6536, 690, '_elementor_page_settings', 'a:0:{}'),
(5208, 557, '_elementor_edit_mode', 'builder'),
(5209, 557, '_elementor_template_type', 'archive'),
(5210, 558, '_elementor_edit_mode', 'builder'),
(5211, 558, '_elementor_template_type', 'archive'),
(5212, 557, '_elementor_version', '3.35.0'),
(5213, 557, '_elementor_pro_version', '3.35.0'),
(5214, 557, '_astra_content_layout_flag', 'disabled'),
(5216, 557, 'ast-title-bar-display', 'disabled'),
(5217, 557, 'ast-featured-img', 'disabled'),
(5218, 557, 'ast-site-content-layout', 'full-width-container'),
(5219, 557, 'site-sidebar-layout', 'no-sidebar'),
(5223, 557, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":12,\"classic_columns_mobile_extra\":\"1\",\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true},{\"id\":\"7778fe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8963d5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6879318\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"414e6b2\"}],\"pp_display_conditions\":[{\"_id\":\"41ed443\"}]},\"elements\":[{\"id\":\"b5949a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check back regularly for new articles and updates from Oasis Health Care Community.\",\"header_size\":\"span\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c1600b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(5221, 557, '_edit_lock', '1770286109:1'),
(5222, 557, '_wp_page_template', 'default'),
(5224, 559, '_elementor_edit_mode', 'builder'),
(5225, 559, '_elementor_template_type', 'archive'),
(5226, 559, '_elementor_version', '3.35.0'),
(5227, 559, '_elementor_pro_version', '3.35.0'),
(5228, 559, '_wp_page_template', 'default'),
(5229, 559, '_elementor_data', '[{\"id\":\"3b033a0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7b7eb71\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2f72182\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"973bc9b\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af1d8f9\"}]},\"elements\":[{\"id\":\"06b9318\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fee39d5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f6f87ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dcc18e5\"}],\"pp_display_conditions\":[{\"_id\":\"498f0dc\"}]},\"elements\":[{\"id\":\"8728a08\",\"elType\":\"widget\",\"settings\":{\"html\":\"<header class=\\\"blog-hero\\\">\\r\\n  <h1>Oasis Blog<\\/h1>\\r\\n  <p>Helping families and caregivers stay informed and healthy.<\\/p>\\r\\n  \\r\\n  <div class=\\\"blog-topics\\\">\\r\\n     <span>Senior Health<\\/span> \\u2022 <span>Caregiving<\\/span> \\u2022 \\r\\n     <span>Updates<\\/span> \\u2022 <span>Events<\\/span>\\r\\n  <\\/div>\\r\\n<\\/header>\\r\\n\\r\\n<main class=\\\"blog-container\\\">\\r\\n   <article class=\\\"post-card\\\">\\r\\n      <img src=\\\"news1.jpg\\\" alt=\\\"\\\">\\r\\n      <h2>Senior Wellness Tips<\\/h2>\\r\\n      <p>Short description here...<\\/p>\\r\\n      <button>Read More<\\/button>\\r\\n   <\\/article>\\r\\n<\\/main>\\r\\n\\r\\n<footer class=\\\"blog-footer\\\">\\r\\n   <p>Check back regularly for new articles and updates from <strong>Oasis Health Care Community<\\/strong>.<\\/p>\\r\\n<\\/footer>\",\"pp_display_conditions\":[{\"_id\":\"bb70bc0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":false}]'),
(5233, 557, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5236, 560, '_edit_last', '1'),
(5237, 560, '_edit_lock', '1771486597:1'),
(11242, 560, '_thumbnail_id', '1154'),
(11240, 1154, '_wp_attached_file', '2026/02/Transportation-aa-1.webp'),
(11241, 1154, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:32:\"2026/02/Transportation-aa-1.webp\";s:8:\"filesize\";i:84094;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Transportation-aa-1-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Transportation-aa-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13544;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Transportation-aa-1-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5241, 560, '_wp_page_template', 'default'),
(5251, 564, '_wp_attached_file', '2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg'),
(5244, 560, 'site-sidebar-layout', 'default'),
(5249, 560, 'theme-transparent-header-meta', 'default'),
(5246, 560, 'ast-site-content-layout', 'default'),
(5247, 560, 'site-content-style', 'default'),
(5248, 560, 'site-sidebar-style', 'default'),
(11245, 560, 'astra-migrate-meta-layouts', 'set'),
(5252, 564, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:66:\"2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\";s:8:\"filesize\";i:72069;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"How-Personalized-Care-Plans-Improve-Quality-of-Life-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16559;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"How-Personalized-Care-Plans-Improve-Quality-of-Life-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7391;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:66:\"How-Personalized-Care-Plans-Improve-Quality-of-Life-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69681;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5253, 563, '_edit_last', '1'),
(5254, 563, '_thumbnail_id', '564'),
(5255, 563, '_wp_page_template', 'default'),
(5267, 566, '_edit_lock', '1770283925:1'),
(5266, 566, '_edit_last', '1'),
(5258, 563, 'site-sidebar-layout', 'default'),
(5263, 563, 'theme-transparent-header-meta', 'default'),
(5260, 563, 'ast-site-content-layout', 'default'),
(5261, 563, 'site-content-style', 'default'),
(5262, 563, 'site-sidebar-style', 'default'),
(5264, 563, 'astra-migrate-meta-layouts', 'set'),
(5265, 563, '_edit_lock', '1770283767:1'),
(5268, 567, '_wp_attached_file', '2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg'),
(5269, 567, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:76:\"2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\";s:8:\"filesize\";i:87415;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:76:\"Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8081;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:76:\"Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78771;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5270, 566, '_thumbnail_id', '567'),
(5271, 566, '_wp_page_template', 'default'),
(5282, 569, '_edit_lock', '1770284019:1'),
(5281, 569, '_edit_last', '1'),
(5274, 566, 'site-sidebar-layout', 'default'),
(5279, 566, 'theme-transparent-header-meta', 'default'),
(5276, 566, 'ast-site-content-layout', 'default'),
(5277, 566, 'site-content-style', 'default'),
(5278, 566, 'site-sidebar-style', 'default'),
(5280, 566, 'astra-migrate-meta-layouts', 'set'),
(5283, 570, '_wp_attached_file', '2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg'),
(5284, 570, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:74:\"2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\";s:8:\"filesize\";i:80723;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:74:\"Engaging-Activities-That-Promote-Socialization-and-Wellness-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19550;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"Engaging-Activities-That-Promote-Socialization-and-Wellness-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8972;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:74:\"Engaging-Activities-That-Promote-Socialization-and-Wellness-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79343;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5285, 569, '_thumbnail_id', '570'),
(5286, 569, '_wp_page_template', 'default'),
(5296, 572, '_elementor_edit_mode', 'builder'),
(5289, 569, 'site-sidebar-layout', 'default'),
(5294, 569, 'theme-transparent-header-meta', 'default'),
(5291, 569, 'ast-site-content-layout', 'default'),
(5292, 569, 'site-content-style', 'default'),
(5293, 569, 'site-sidebar-style', 'default'),
(5295, 569, 'astra-migrate-meta-layouts', 'set'),
(5297, 572, '_elementor_template_type', 'container'),
(5298, 572, '_elementor_version', '3.35.0'),
(5299, 572, '_elementor_pro_version', '3.35.0'),
(5300, 572, '_elementor_page_settings', 'a:0:{}'),
(5301, 572, '_elementor_data', '[{\"id\":\"2cbb6ceb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a12b712\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1ecd2056\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3282ce36\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"type\":\"date\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"comments_custom_strings\":false,\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\",\"link\":\"yes\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"default\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"4c8b8cc8\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"4028a3d1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"},\"arrow_previous_icon\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"arrow_next_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(5302, 573, '_elementor_edit_mode', 'builder'),
(5303, 573, '_elementor_template_type', 'container'),
(5304, 573, '_elementor_version', '3.35.0'),
(5305, 573, '_elementor_pro_version', '3.35.0'),
(5306, 573, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5307, 573, '_elementor_data', '[{\"id\":\"2cbb6ceb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a12b712\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"1ecd2056\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"3282ce36\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"type\":\"date\",\"date_format\":\"default\",\"time_format\":\"default\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"comments_custom_strings\":false,\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"custom_text\":\"\",\"link\":\"yes\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"show_icon\":\"default\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"4c8b8cc8\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"4028a3d1\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"},\"arrow_previous_icon\":{\"value\":\"fas fa-angle-left\",\"library\":\"fa-solid\"},\"arrow_next_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(5309, 572, '_elementor_controls_usage', 'a:6:{s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5310, 574, '_elementor_edit_mode', 'builder'),
(5311, 574, '_elementor_template_type', 'container'),
(5312, 574, '_elementor_version', '3.35.0'),
(5313, 574, '_elementor_pro_version', '3.35.0'),
(5314, 574, '_elementor_page_settings', 'a:0:{}'),
(5315, 574, '_elementor_data', '[{\"id\":\"134441b7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52795468\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50a33191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78d3cb6b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"109cec47\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62dc116e\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3,\"load_more_spinner\":{\"value\":\"fas fa-spinner\",\"library\":\"fa-solid\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5316, 575, '_elementor_edit_mode', 'builder'),
(5317, 575, '_elementor_template_type', 'container'),
(5318, 575, '_elementor_version', '3.35.0'),
(5319, 575, '_elementor_pro_version', '3.35.0'),
(5320, 575, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5321, 575, '_elementor_data', '[{\"id\":\"134441b7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52795468\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"zoomIn\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50a33191\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"865b08b\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78d3cb6b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"a118ce4\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":true},{\"id\":\"109cec47\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"animation\":\"fadeInUp\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[],\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62dc116e\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\",\"pp_condition_key\":\"authentication\",\"pp_condition_shortcode_name\":\"\",\"pp_condition_operator\":\"is\",\"pp_condition_operator_advanced\":\">\",\"pp_condition_operator_date\":\"<\",\"pp_condition_authentication_value\":\"authenticated\",\"pp_condition_user_value\":\"\",\"pp_condition_role_value\":\"subscriber\",\"pp_condition_visitor_type_value\":\"new\",\"pp_condition_page_value\":\"\",\"pp_condition_post_value\":\"\",\"pp_condition_static_page_value\":\"home\",\"pp_condition_post_term_value\":\"\",\"pp_condition_post_type_value\":\"\",\"pp_condition_taxonomy_archive_value\":\"\",\"pp_condition_term_archive_value\":\"\",\"pp_condition_post_type_archive_value\":\"\",\"pp_condition_date_archive_value\":\"\",\"pp_condition_author_archive_value\":\"\",\"pp_condition_search_results_value\":\"\",\"pp_condition_date_value\":\"2026-02-02 to 2026-02-08\",\"pp_condition_time_value\":\"\",\"pp_condition_day_value\":\"1\",\"pp_condition_os_value\":\"iphone\",\"pp_condition_browser_value\":\"ie\",\"pp_condition_search-bot_value\":\"all_search_bots\",\"pp_condition_shortcode_value\":\"\",\"pp_condition_request_parameter_value\":\"\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":3,\"load_more_spinner\":{\"value\":\"fas fa-spinner\",\"library\":\"fa-solid\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_icon\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"pp_custom_cursor_text_bg_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5323, 574, '_elementor_controls_usage', 'a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:6:\"weight\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:5:{s:28:\"classic_columns_mobile_extra\";i:1;s:27:\"classic_thumbnail_size_size\";i:1;s:22:\"classic_excerpt_length\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_posts_per_page\";i:1;}}s:5:\"style\";a:2:{s:26:\"classic_section_design_box\";a:3:{s:23:\"classic_content_padding\";i:1;s:34:\"classic_box_shadow_box_shadow_type\";i:1;s:29:\"classic_box_shadow_box_shadow\";i:1;}s:30:\"classic_section_design_content\";a:12:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:21:\"classic_title_spacing\";i:1;s:18:\"classic_meta_color\";i:1;s:34:\"classic_meta_typography_typography\";i:1;s:33:\"classic_meta_typography_font_size\";i:1;s:21:\"classic_excerpt_color\";i:1;s:37:\"classic_excerpt_typography_typography\";i:1;s:36:\"classic_excerpt_typography_font_size\";i:1;s:39:\"classic_read_more_typography_typography\";i:1;s:38:\"classic_read_more_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5349, 577, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5342, 577, '_elementor_edit_mode', 'builder'),
(5343, 577, '_elementor_template_type', 'archive'),
(5344, 577, '_elementor_version', '3.35.0'),
(5345, 577, '_elementor_pro_version', '3.35.0'),
(5346, 577, '_wp_page_template', 'default'),
(5347, 577, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"c972015\",\"elType\":\"widget\",\"settings\":{\"classic_columns_mobile_extra\":\"1\",\"classic_thumbnail_size_size\":\"full\",\"classic_excerpt_length\":12,\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_box_shadow_box_shadow_type\":\"yes\",\"classic_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"classic_meta_color\":\"#000000\",\"classic_meta_typography_typography\":\"custom\",\"classic_meta_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_excerpt_color\":\"#000000\",\"classic_excerpt_typography_typography\":\"custom\",\"classic_excerpt_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"classic_read_more_typography_typography\":\"custom\",\"classic_read_more_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"pagination_page_limit\":\"\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pp_display_conditions\":[{\"_id\":\"b927082\",\"pp_condition_date_time_before_value\":\"2024-11-06 16:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_meta_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_excerpt_color\":\"globals\\/colors?id=astglobalcolor3\",\"classic_read_more_color\":\"\"},\"classic_posts_per_page\":12,\"pagination_type\":\"numbers\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5371, 579, '_elementor_pro_version', '3.35.0'),
(5372, 579, '_wp_page_template', 'default'),
(5373, 579, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true},{\"id\":\"0a67dcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5369, 579, '_elementor_template_type', 'archive'),
(5370, 579, '_elementor_version', '3.35.0'),
(5381, 580, '_elementor_edit_mode', 'builder'),
(5382, 580, '_elementor_template_type', 'archive'),
(5383, 580, '_elementor_version', '3.35.0'),
(5384, 580, '_elementor_pro_version', '3.35.0'),
(5385, 580, '_wp_page_template', 'default'),
(5386, 580, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5368, 579, '_elementor_edit_mode', 'builder'),
(5375, 579, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5401, 584, '_elementor_edit_mode', 'builder'),
(5402, 584, '_elementor_template_type', 'archive'),
(5403, 584, '_elementor_version', '3.35.0'),
(5404, 584, '_elementor_pro_version', '3.35.0'),
(5405, 584, '_wp_page_template', 'default'),
(5406, 584, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":4,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5393, 581, '_wp_trash_meta_status', 'publish'),
(5394, 581, '_wp_trash_meta_time', '1770284948'),
(5395, 582, '_wp_trash_meta_status', 'publish'),
(5396, 582, '_wp_trash_meta_time', '1770284955'),
(5388, 580, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5415, 585, '_elementor_edit_mode', 'builder'),
(5416, 585, '_elementor_template_type', 'archive'),
(5417, 585, '_elementor_version', '3.35.0'),
(5418, 585, '_elementor_pro_version', '3.35.0'),
(5419, 585, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5420, 585, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":4,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5399, 583, '_wp_trash_meta_status', 'publish'),
(5400, 583, '_wp_trash_meta_time', '1770284971'),
(5408, 584, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(7367, 776, '_elementor_edit_mode', 'builder'),
(7368, 776, '_elementor_template_type', 'wp-page'),
(7369, 776, '_elementor_version', '3.35.0'),
(7370, 776, '_elementor_pro_version', '3.35.0'),
(7371, 776, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5429, 586, '_elementor_edit_mode', 'builder'),
(5430, 586, '_elementor_template_type', 'archive'),
(5431, 586, '_elementor_version', '3.35.0'),
(5432, 586, '_elementor_pro_version', '3.35.0'),
(5433, 586, '_wp_page_template', 'default'),
(5434, 586, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":4,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5422, 585, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5441, 587, '_elementor_edit_mode', 'builder'),
(5442, 587, '_elementor_template_type', 'archive'),
(5443, 587, '_elementor_version', '3.35.0'),
(5444, 587, '_elementor_pro_version', '3.35.0'),
(5445, 587, '_wp_page_template', 'default'),
(5446, 587, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":4,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5436, 586, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(7363, 775, '_elementor_page_settings', 'a:0:{}'),
(5448, 587, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5451, 588, '_elementor_edit_mode', 'builder'),
(5452, 588, '_elementor_template_type', 'archive'),
(5453, 588, '_elementor_version', '3.35.0'),
(5454, 588, '_elementor_pro_version', '3.35.0'),
(5455, 588, '_wp_page_template', 'default'),
(5456, 588, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":12,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5458, 588, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5463, 589, '_elementor_edit_mode', 'builder'),
(5464, 589, '_elementor_template_type', 'archive'),
(5465, 589, '_elementor_version', '3.35.0'),
(5466, 589, '_elementor_pro_version', '3.35.0'),
(5467, 589, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5468, 589, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":12,\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5475, 590, '_elementor_edit_mode', 'builder'),
(5476, 590, '_elementor_template_type', 'archive'),
(5477, 590, '_elementor_version', '3.35.0'),
(5478, 590, '_elementor_pro_version', '3.35.0'),
(5479, 590, '_wp_page_template', 'default'),
(5480, 590, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":12,\"classic_columns_mobile_extra\":\"1\",\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true}],\"isInner\":false}]'),
(5482, 590, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5470, 589, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(5496, 593, '_elementor_edit_mode', 'builder'),
(5497, 593, '_elementor_template_type', 'archive'),
(5498, 593, '_elementor_version', '3.35.0'),
(5499, 593, '_elementor_pro_version', '3.35.0'),
(5500, 593, '_wp_page_template', 'default'),
(5501, 593, '_elementor_data', '[{\"id\":\"6b267990\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8dabad0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"187c8b0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"dd8a009\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"eb33ee5\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"7da08867\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"872dbe4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"613ea8a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"295b3d9\"}],\"pp_display_conditions\":[{\"_id\":\"f0d4957\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:38\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"e134bf4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":12,\"classic_columns_mobile_extra\":\"1\",\"classic_equal_height\":\"yes\",\"nothing_found_message\":\"It seems we can\'t find what you\'re looking for.\",\"classic_filter_all_label\":\"All\",\"classic_search_form_input_placeholder\":\"Search...\",\"classic_search_form_button_text\":\"Search\",\"classic_post_terms_separator\":\",\",\"classic_thumbnail_size\":\"full\",\"classic_title_html_tag\":\"h5\",\"classic_show_excerpt\":\"yes\",\"classic_excerpt_length\":12,\"classic_post_meta_separator\":\"-\",\"classic_date_custom_format\":\"F j, Y\",\"classic_show_comments\":\"\",\"classic_show_button\":\"yes\",\"classic_button_text\":\"Read More\",\"classic_pagination_type\":\"numbers\",\"classic_pagination_page_limit\":\"\",\"classic_pagination_load_more_label\":\"Load More\",\"classic_pagination_prev_label\":\"&laquo; Previous\",\"classic_pagination_next_label\":\"Next &raquo;\",\"classic_posts_horizontal_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"classic_posts_vertical_spacing\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"classic_post_box_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"classic_post_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.09)\"},\"classic_post_content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"classic_pagination_margin_top\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_pagination_link_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"classic_pagination_link_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"classic_pagination_spacing\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"card_filter_all_label\":\"All\",\"card_search_form_input_placeholder\":\"Search...\",\"card_search_form_button_text\":\"Search\",\"card_post_terms_separator\":\",\",\"card_post_meta_separator\":\"-\",\"card_date_custom_format\":\"F j, Y\",\"card_button_text\":\"Read More\",\"card_pagination_load_more_label\":\"Load More\",\"card_pagination_prev_label\":\"&laquo; Previous\",\"card_pagination_next_label\":\"Next &raquo;\",\"checkerboard_filter_all_label\":\"All\",\"checkerboard_search_form_input_placeholder\":\"Search...\",\"checkerboard_search_form_button_text\":\"Search\",\"checkerboard_post_terms_separator\":\",\",\"checkerboard_post_meta_separator\":\"-\",\"checkerboard_date_custom_format\":\"F j, Y\",\"checkerboard_button_text\":\"Read More\",\"checkerboard_pagination_load_more_label\":\"Load More\",\"checkerboard_pagination_prev_label\":\"&laquo; Previous\",\"checkerboard_pagination_next_label\":\"Next &raquo;\",\"creative_filter_all_label\":\"All\",\"creative_search_form_input_placeholder\":\"Search...\",\"creative_search_form_button_text\":\"Search\",\"creative_post_terms_separator\":\",\",\"creative_post_meta_separator\":\"-\",\"creative_date_custom_format\":\"F j, Y\",\"creative_button_text\":\"Read More\",\"creative_pagination_load_more_label\":\"Load More\",\"creative_pagination_prev_label\":\"&laquo; Previous\",\"creative_pagination_next_label\":\"Next &raquo;\",\"event_filter_all_label\":\"All\",\"event_search_form_input_placeholder\":\"Search...\",\"event_search_form_button_text\":\"Search\",\"event_post_terms_separator\":\",\",\"event_post_meta_separator\":\"-\",\"event_date_custom_format\":\"F j, Y\",\"event_button_text\":\"Read More\",\"event_pagination_load_more_label\":\"Load More\",\"event_pagination_prev_label\":\"&laquo; Previous\",\"event_pagination_next_label\":\"Next &raquo;\",\"news_filter_all_label\":\"All\",\"news_search_form_input_placeholder\":\"Search...\",\"news_search_form_button_text\":\"Search\",\"news_post_terms_separator\":\",\",\"news_post_meta_separator\":\"-\",\"news_date_custom_format\":\"F j, Y\",\"news_button_text\":\"Read More\",\"news_pagination_load_more_label\":\"Load More\",\"news_pagination_prev_label\":\"&laquo; Previous\",\"news_pagination_next_label\":\"Next &raquo;\",\"overlap_filter_all_label\":\"All\",\"overlap_search_form_input_placeholder\":\"Search...\",\"overlap_search_form_button_text\":\"Search\",\"overlap_post_terms_separator\":\",\",\"overlap_post_meta_separator\":\"-\",\"overlap_date_custom_format\":\"F j, Y\",\"overlap_button_text\":\"Read More\",\"overlap_pagination_load_more_label\":\"Load More\",\"overlap_pagination_prev_label\":\"&laquo; Previous\",\"overlap_pagination_next_label\":\"Next &raquo;\",\"portfolio_filter_all_label\":\"All\",\"portfolio_search_form_input_placeholder\":\"Search...\",\"portfolio_search_form_button_text\":\"Search\",\"portfolio_post_terms_separator\":\",\",\"portfolio_post_meta_separator\":\"-\",\"portfolio_date_custom_format\":\"F j, Y\",\"portfolio_button_text\":\"Read More\",\"portfolio_pagination_load_more_label\":\"Load More\",\"portfolio_pagination_prev_label\":\"&laquo; Previous\",\"portfolio_pagination_next_label\":\"Next &raquo;\",\"template_filter_all_label\":\"All\",\"template_search_form_input_placeholder\":\"Search...\",\"template_search_form_button_text\":\"Search\",\"template_pagination_load_more_label\":\"Load More\",\"template_pagination_prev_label\":\"&laquo; Previous\",\"template_pagination_next_label\":\"Next &raquo;\",\"pp_display_conditions\":[{\"_id\":\"0aa4a19\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"classic_post_box_bg\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_normal\":\"globals\\/colors?id=astglobalcolor1\",\"classic_button_text_color_normal\":\"globals\\/colors?id=astglobalcolor4\",\"classic_button_bg_color_hover\":\"globals\\/colors?id=astglobalcolor0\",\"classic_button_text_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"classic_pagination_color\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"classic_pagination_link_bg_color_active\":\"globals\\/colors?id=astglobalcolor1\",\"classic_pagination_color_active\":\"globals\\/colors?id=astglobalcolor4\",\"classic_meta_text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"pp-posts\"}],\"isInner\":true},{\"id\":\"7778fe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b8963d5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6879318\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"414e6b2\"}],\"pp_display_conditions\":[{\"_id\":\"41ed443\"}]},\"elements\":[{\"id\":\"b5949a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Check back regularly for new articles and updates from Oasis Health Care Community.\",\"header_size\":\"span\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"_flex_align_self\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3c1600b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(5485, 1, '_wp_trash_meta_status', 'publish'),
(5486, 1, '_wp_trash_meta_time', '1770285712'),
(5487, 1, '_wp_desired_post_slug', 'hello-world'),
(5488, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:\"1\";}'),
(5507, 557, '_elementor_page_settings', 'a:0:{}'),
(5508, 557, '_elementor_controls_usage', 'a:3:{s:8:\"pp-posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:18:\"section_skin_field\";a:3:{s:14:\"posts_per_page\";i:1;s:28:\"classic_columns_mobile_extra\";i:1;s:20:\"classic_equal_height\";i:1;}s:21:\"classic_section_image\";a:1:{s:22:\"classic_thumbnail_size\";i:1;}s:26:\"classic_section_post_title\";a:1:{s:22:\"classic_title_html_tag\";i:1;}s:28:\"classic_section_post_excerpt\";a:2:{s:20:\"classic_show_excerpt\";i:1;s:22:\"classic_excerpt_length\";i:1;}s:25:\"classic_section_post_meta\";a:1:{s:21:\"classic_show_comments\";i:1;}s:22:\"classic_section_button\";a:1:{s:19:\"classic_show_button\";i:1;}s:26:\"classic_section_pagination\";a:2:{s:23:\"classic_pagination_type\";i:1;s:29:\"classic_pagination_page_limit\";i:1;}}s:5:\"style\";a:4:{s:28:\"classic_section_layout_style\";a:2:{s:32:\"classic_posts_horizontal_spacing\";i:1;s:30:\"classic_posts_vertical_spacing\";i:1;}s:30:\"classic_section_post_box_style\";a:2:{s:30:\"classic_post_box_border_radius\";i:1;s:34:\"classic_post_box_shadow_box_shadow\";i:1;}s:34:\"classic_section_post_content_style\";a:1:{s:28:\"classic_post_content_padding\";i:1;}s:32:\"classic_section_pagination_style\";a:4:{s:29:\"classic_pagination_margin_top\";i:1;s:37:\"classic_pagination_link_border_radius\";i:1;s:31:\"classic_pagination_link_padding\";i:1;s:26:\"classic_pagination_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:2;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}}}}'),
(5503, 593, '_elementor_conditions', 'a:1:{i:0;s:28:\"include/archive/post_archive\";}'),
(7356, 775, '_wp_page_template', 'elementor_header_footer'),
(7357, 775, '_elementor_edit_mode', 'builder'),
(7358, 775, '_elementor_template_type', 'wp-page'),
(7359, 775, '_elementor_version', '3.35.0'),
(7360, 775, '_elementor_pro_version', '3.35.0'),
(7361, 775, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5506, 593, '_elementor_screenshot_failed', '2026-02-05 10:06:11'),
(5511, 594, '_elementor_edit_mode', 'builder'),
(5512, 594, '_elementor_template_type', 'single-post'),
(5513, 595, '_elementor_edit_mode', 'builder'),
(5514, 595, '_elementor_template_type', 'single-post'),
(5515, 594, '_elementor_version', '3.35.0'),
(5516, 594, '_elementor_pro_version', '3.35.0'),
(5517, 594, '_astra_content_layout_flag', 'disabled'),
(5519, 594, 'ast-title-bar-display', 'disabled'),
(5520, 594, 'ast-featured-img', 'disabled'),
(5521, 594, 'ast-site-content-layout', 'full-width-container'),
(5522, 594, 'site-sidebar-layout', 'no-sidebar');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5530, 594, '_elementor_data', '[{\"id\":\"34607fab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}]},\"elements\":[{\"id\":\"5f9a5480\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"7ee3fd0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"List Item #1\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc5c641\",\"__dynamic__\":{\"text\":\"[elementor-tag id=\\\"e8764af\\\" name=\\\"post-terms\\\" settings=\\\"%7B%22taxonomy%22%3A%22category%22%2C%22separator%22%3A%22%2C%20%22%7D\\\"]\"}}],\"pp_display_conditions\":[{\"_id\":\"743a3f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"51387410\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h2\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"6b34b4fa\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"2857d1a8\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"5d9bbc7b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(5524, 594, '_edit_lock', '1770286565:1'),
(5525, 569, '_elementor_template_type', 'wp-post'),
(5526, 569, '_elementor_version', '3.35.0'),
(5527, 569, '_elementor_pro_version', '3.35.0'),
(5528, 569, '_elementor_page_settings', 'a:0:{}'),
(5529, 594, '_wp_page_template', 'default'),
(5531, 596, '_elementor_edit_mode', 'builder'),
(5532, 596, '_elementor_template_type', 'single-post'),
(5533, 596, '_elementor_version', '3.35.0'),
(5534, 596, '_elementor_pro_version', '3.35.0'),
(5535, 596, '_wp_page_template', 'default'),
(5536, 596, '_elementor_data', '[{\"id\":\"34607fab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}]},\"elements\":[{\"id\":\"5f9a5480\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"7ee3fd0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"List Item #1\",\"_id\":\"bc5c641\",\"__dynamic__\":{\"text\":\"[elementor-tag id=\\\"e8764af\\\" name=\\\"post-terms\\\" settings=\\\"%7B%22taxonomy%22%3A%22category%22%2C%22separator%22%3A%22%2C%20%22%7D\\\"]\"}}],\"pp_display_conditions\":[{\"_id\":\"743a3f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"51387410\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h2\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"6b34b4fa\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"2857d1a8\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"5d9bbc7b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(5543, 597, '_elementor_edit_mode', 'builder'),
(5544, 597, '_elementor_template_type', 'single-post'),
(5545, 597, '_elementor_version', '3.35.0'),
(5546, 597, '_elementor_pro_version', '3.35.0'),
(5547, 597, '_wp_page_template', 'default'),
(5548, 597, '_elementor_data', '[{\"id\":\"34607fab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"fb7dbd7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"54d7e5d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"9364e87\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c016760\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}]},\"elements\":[{\"id\":\"5f9a5480\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%2C%22size%22%3A%22%22%7D%7D\\\"]\"},\"pp_display_conditions\":[{\"_id\":\"d6fd5fe\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"7ee3fd0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"List Item #1\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"bc5c641\",\"__dynamic__\":{\"text\":\"[elementor-tag id=\\\"e8764af\\\" name=\\\"post-terms\\\" settings=\\\"%7B%22taxonomy%22%3A%22category%22%2C%22separator%22%3A%22%2C%20%22%7D\\\"]\"}}],\"pp_display_conditions\":[{\"_id\":\"743a3f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"51387410\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"pp_display_conditions\":[{\"_id\":\"010fdf6\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"header_size\":\"h2\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"6b34b4fa\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"icon_list\":[{\"selected_icon\":{\"value\":\"fas fa-calendar\",\"library\":\"fa-solid\"},\"_id\":\"1c18d28\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\"}],\"pp_display_conditions\":[{\"_id\":\"636b958\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"2857d1a8\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"pp_display_conditions\":[{\"_id\":\"ba1e304\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"5d9bbc7b\",\"elType\":\"widget\",\"settings\":{\"content_width\":\"full\",\"prev_label\":\"Previous\",\"next_label\":\"Next\",\"pp_display_conditions\":[{\"_id\":\"9496c7f\",\"pp_condition_date_time_before_value\":\"2026-02-08 09:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"label_color\":\"globals\\/colors?id=astglobalcolor0\",\"text_color\":\"globals\\/colors?id=astglobalcolor1\",\"arrow_color\":\"globals\\/colors?id=astglobalcolor1\",\"sep_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"post-navigation\"}],\"isInner\":false}]'),
(5540, 594, '_elementor_conditions', 'a:1:{i:0;s:21:\"include/singular/post\";}'),
(5553, 594, '_elementor_page_settings', 'a:0:{}'),
(5554, 594, '_elementor_controls_usage', 'a:7:{s:25:\"theme-post-featured-image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:16:\"theme-post-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:15:\"post-navigation\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(5550, 597, '_elementor_conditions', 'a:1:{i:0;s:21:\"include/singular/post\";}'),
(7353, 774, '_elementor_page_settings', 'a:0:{}'),
(5557, 26, '_elementor_edit_mode', 'builder'),
(5558, 26, '_astra_content_layout_flag', 'disabled'),
(5560, 26, 'ast-title-bar-display', 'disabled'),
(5561, 26, 'ast-featured-img', 'disabled'),
(5562, 26, '_elementor_template_type', 'wp-page'),
(5563, 26, '_elementor_version', '3.35.0'),
(5564, 26, '_elementor_pro_version', '3.35.0'),
(5588, 26, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us -  Oasis Health Care Community\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5589, 601, '_wp_page_template', 'elementor_header_footer'),
(5591, 601, '_elementor_edit_mode', 'builder'),
(5592, 601, '_elementor_template_type', 'wp-page'),
(5593, 601, '_elementor_version', '3.35.0'),
(5594, 601, '_elementor_pro_version', '3.35.0'),
(5595, 601, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5574, 599, '_wp_page_template', 'elementor_header_footer'),
(5576, 599, '_elementor_edit_mode', 'builder'),
(5577, 599, '_elementor_template_type', 'wp-page'),
(5578, 599, '_elementor_version', '3.35.0'),
(5579, 599, '_elementor_pro_version', '3.35.0'),
(5580, 599, '_elementor_page_settings', 'a:0:{}'),
(5581, 600, '_wp_page_template', 'elementor_header_footer'),
(5583, 600, '_elementor_edit_mode', 'builder'),
(5584, 600, '_elementor_template_type', 'wp-page'),
(5585, 600, '_elementor_version', '3.35.0'),
(5586, 600, '_elementor_pro_version', '3.35.0'),
(5587, 600, '_elementor_page_settings', 'a:0:{}'),
(5598, 602, '_wp_page_template', 'elementor_header_footer'),
(5600, 602, '_elementor_edit_mode', 'builder'),
(5601, 602, '_elementor_template_type', 'wp-page'),
(5602, 602, '_elementor_version', '3.35.0'),
(5603, 602, '_elementor_pro_version', '3.35.0'),
(5604, 602, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5605, 602, '_elementor_page_settings', 'a:0:{}'),
(5606, 603, '_wp_page_template', 'elementor_header_footer'),
(5608, 603, '_elementor_edit_mode', 'builder'),
(5609, 603, '_elementor_template_type', 'wp-page'),
(5610, 603, '_elementor_version', '3.35.0'),
(5611, 603, '_elementor_pro_version', '3.35.0'),
(5612, 603, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5613, 603, '_elementor_page_settings', 'a:0:{}'),
(5614, 604, '_wp_page_template', 'elementor_header_footer'),
(5616, 604, '_elementor_edit_mode', 'builder'),
(5617, 604, '_elementor_template_type', 'wp-page'),
(5618, 604, '_elementor_version', '3.35.0'),
(5619, 604, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5620, 604, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5639, 607, '_wp_page_template', 'elementor_header_footer'),
(5623, 605, '_wp_page_template', 'elementor_header_footer'),
(5625, 605, '_elementor_edit_mode', 'builder'),
(5626, 605, '_elementor_template_type', 'wp-page'),
(5627, 605, '_elementor_version', '3.35.0'),
(5628, 605, '_elementor_pro_version', '3.35.0'),
(5629, 605, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5630, 605, '_elementor_page_settings', 'a:0:{}'),
(5631, 606, '_wp_page_template', 'elementor_header_footer'),
(5633, 606, '_elementor_edit_mode', 'builder'),
(5634, 606, '_elementor_template_type', 'wp-page'),
(5635, 606, '_elementor_version', '3.35.0'),
(5636, 606, '_elementor_pro_version', '3.35.0'),
(5637, 606, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInRight\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5638, 606, '_elementor_page_settings', 'a:0:{}'),
(5641, 607, '_elementor_edit_mode', 'builder'),
(5642, 607, '_elementor_template_type', 'wp-page'),
(5643, 607, '_elementor_version', '3.35.0'),
(5644, 607, '_elementor_pro_version', '3.35.0'),
(5645, 607, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5648, 608, '_wp_page_template', 'elementor_header_footer'),
(5650, 608, '_elementor_edit_mode', 'builder'),
(5651, 608, '_elementor_template_type', 'wp-page'),
(5652, 608, '_elementor_version', '3.35.0'),
(5653, 608, '_elementor_pro_version', '3.35.0'),
(5654, 608, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5655, 608, '_elementor_page_settings', 'a:0:{}'),
(5656, 609, '_wp_page_template', 'elementor_header_footer'),
(5658, 609, '_elementor_edit_mode', 'builder'),
(5659, 609, '_elementor_template_type', 'wp-page'),
(5660, 609, '_elementor_version', '3.35.0'),
(5661, 609, '_elementor_pro_version', '3.35.0'),
(5662, 609, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"New message from \\\"Oasis\\\"\",\"email_from\":\"email@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5663, 609, '_elementor_page_settings', 'a:0:{}'),
(5664, 610, '_wp_page_template', 'elementor_header_footer'),
(5666, 610, '_elementor_edit_mode', 'builder'),
(5667, 610, '_elementor_template_type', 'wp-page'),
(5668, 610, '_elementor_version', '3.35.0'),
(5669, 610, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5670, 610, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8695, 918, '_wp_page_template', 'elementor_header_footer'),
(8675, 916, '_wp_page_template', 'elementor_header_footer'),
(8676, 916, '_elementor_edit_mode', 'builder'),
(8677, 916, '_elementor_template_type', 'wp-page'),
(8678, 916, '_elementor_version', '3.35.0'),
(8679, 916, '_elementor_pro_version', '3.35.0'),
(8680, 916, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5675, 611, '_edit_last', '1'),
(5676, 611, '_edit_lock', '1770626702:1'),
(5677, 611, '_wp_page_template', 'elementor_header_footer'),
(5678, 611, 'site-sidebar-layout', 'no-sidebar'),
(5683, 611, 'theme-transparent-header-meta', 'default'),
(5680, 611, 'ast-site-content-layout', 'full-width-container'),
(5681, 611, 'site-content-style', 'default'),
(5682, 611, 'site-sidebar-style', 'default'),
(5684, 611, 'astra-migrate-meta-layouts', 'set'),
(5692, 613, '_elementor_page_settings', 'a:0:{}'),
(7332, 771, '_elementor_page_settings', 'a:0:{}'),
(7333, 772, '_wp_page_template', 'elementor_header_footer'),
(7334, 772, '_elementor_edit_mode', 'builder'),
(7335, 772, '_elementor_template_type', 'wp-page'),
(7336, 772, '_elementor_version', '3.35.0'),
(7337, 772, '_elementor_pro_version', '3.35.0'),
(7338, 772, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7366, 776, '_wp_page_template', 'elementor_header_footer'),
(7346, 774, '_wp_page_template', 'elementor_header_footer'),
(7347, 774, '_elementor_edit_mode', 'builder'),
(7348, 774, '_elementor_template_type', 'wp-page'),
(7349, 774, '_elementor_version', '3.35.0'),
(7350, 774, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7351, 774, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7377, 777, '_wp_page_template', 'elementor_header_footer'),
(7378, 777, '_elementor_edit_mode', 'builder'),
(7379, 777, '_elementor_template_type', 'wp-page'),
(7380, 777, '_elementor_version', '3.35.0'),
(7381, 777, '_elementor_pro_version', '3.35.0'),
(7382, 777, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7384, 777, '_elementor_page_settings', 'a:0:{}'),
(7385, 778, '_wp_page_template', 'elementor_header_footer'),
(7386, 778, '_elementor_edit_mode', 'builder'),
(7387, 778, '_elementor_template_type', 'wp-page'),
(7388, 778, '_elementor_version', '3.35.0'),
(7389, 778, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7390, 778, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7344, 773, '_wp_attached_file', '2026/02/Oasis-Adult-Day-Care-Center-ah.jpg'),
(7345, 773, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\";s:8:\"filesize\";i:119352;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-ah-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22847;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-ah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10010;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-ah-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5695, 614, '_wp_page_template', 'elementor_header_footer'),
(5696, 614, '_elementor_edit_mode', 'builder'),
(5697, 614, '_elementor_template_type', 'wp-page'),
(5698, 614, '_elementor_version', '3.35.0'),
(5699, 614, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5700, 614, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5702, 614, '_elementor_page_settings', 'a:0:{}'),
(7299, 767, '_elementor_page_settings', 'a:0:{}'),
(7300, 768, '_wp_page_template', 'elementor_header_footer'),
(7301, 768, '_elementor_edit_mode', 'builder'),
(7302, 768, '_elementor_template_type', 'wp-page'),
(7303, 768, '_elementor_version', '3.35.0'),
(7304, 768, '_elementor_pro_version', '3.35.0'),
(7305, 768, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7307, 768, '_elementor_page_settings', 'a:0:{}'),
(7308, 769, '_wp_page_template', 'elementor_header_footer'),
(7309, 769, '_elementor_edit_mode', 'builder'),
(7310, 769, '_elementor_template_type', 'wp-page'),
(7311, 769, '_elementor_version', '3.35.0'),
(7312, 769, '_elementor_pro_version', '3.35.0'),
(7313, 769, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7317, 770, '_wp_page_template', 'elementor_header_footer'),
(7318, 770, '_elementor_edit_mode', 'builder'),
(7319, 770, '_elementor_template_type', 'wp-page'),
(7320, 770, '_elementor_version', '3.35.0'),
(7321, 770, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7322, 770, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(7324, 770, '_elementor_page_settings', 'a:0:{}'),
(7325, 771, '_wp_page_template', 'elementor_header_footer'),
(7326, 771, '_elementor_edit_mode', 'builder'),
(7327, 771, '_elementor_template_type', 'wp-page'),
(7328, 771, '_elementor_version', '3.35.0'),
(7329, 771, '_elementor_pro_version', '3.35.0'),
(7330, 771, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5705, 615, '_wp_page_template', 'elementor_header_footer'),
(5706, 615, '_elementor_edit_mode', 'builder'),
(5707, 615, '_elementor_template_type', 'wp-page'),
(5708, 615, '_elementor_version', '3.35.0'),
(5709, 615, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5710, 615, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6700, 704, '_wp_page_template', 'elementor_header_footer'),
(6701, 704, '_elementor_edit_mode', 'builder'),
(6702, 704, '_elementor_template_type', 'wp-page'),
(6703, 704, '_elementor_version', '3.35.0'),
(6704, 704, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6705, 704, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5733, 617, '_elementor_page_settings', 'a:0:{}'),
(6405, 681, '_wp_page_template', 'elementor_header_footer'),
(5734, 618, '_wp_page_template', 'elementor_header_footer'),
(5735, 618, '_elementor_edit_mode', 'builder'),
(5736, 618, '_elementor_template_type', 'wp-page'),
(5737, 618, '_elementor_version', '3.35.0'),
(5738, 618, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5739, 618, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5937, 635, '_wp_page_template', 'elementor_header_footer'),
(5917, 633, '_wp_page_template', 'elementor_header_footer'),
(5918, 633, '_elementor_edit_mode', 'builder'),
(5919, 633, '_elementor_template_type', 'wp-page'),
(5920, 633, '_elementor_version', '3.35.0'),
(5921, 633, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5922, 633, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5750, 619, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7180, 756, '_elementor_source', 'post'),
(7181, 756, '_elementor_edit_mode', 'builder'),
(7182, 756, '_elementor_template_type', 'footer'),
(7183, 756, '_elementor_version', '3.35.0'),
(7184, 756, '_elementor_pro_version', '3.35.0'),
(7185, 756, '_wp_page_template', 'default'),
(5754, 619, '_elementor_screenshot_failed', '2026-02-05 07:14:03'),
(6105, 650, '_wp_page_template', 'elementor_header_footer'),
(6052, 645, '_wp_page_template', 'elementor_header_footer'),
(6053, 645, '_elementor_edit_mode', 'builder'),
(6054, 645, '_elementor_template_type', 'wp-page'),
(6055, 645, '_elementor_version', '3.35.0'),
(6056, 645, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6057, 645, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6123, 651, '_elementor_page_settings', 'a:0:{}'),
(6124, 652, '_wp_page_template', 'elementor_header_footer'),
(6125, 652, '_elementor_edit_mode', 'builder'),
(6126, 652, '_elementor_template_type', 'wp-page'),
(6127, 652, '_elementor_version', '3.35.0'),
(6128, 652, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6129, 652, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5848, 628, '_elementor_source', 'post'),
(5849, 628, '_elementor_edit_mode', 'builder'),
(5850, 628, '_elementor_template_type', 'header'),
(5851, 628, '_elementor_version', '3.35.0'),
(5852, 628, '_elementor_pro_version', '3.35.0'),
(5853, 628, '_wp_page_template', 'default'),
(5854, 628, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5868, 629, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5872, 630, '_elementor_source', 'post'),
(5873, 630, '_elementor_edit_mode', 'builder'),
(5874, 630, '_elementor_template_type', 'header'),
(5875, 630, '_elementor_version', '3.35.0'),
(5876, 630, '_elementor_pro_version', '3.35.0'),
(5877, 630, '_wp_page_template', 'default'),
(5878, 630, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5762, 611, '_elementor_edit_mode', 'builder'),
(5763, 611, '_astra_content_layout_flag', 'disabled'),
(5765, 611, 'ast-title-bar-display', 'disabled'),
(5766, 611, 'ast-featured-img', 'disabled'),
(5767, 611, '_elementor_template_type', 'wp-page'),
(5768, 611, '_elementor_version', '3.35.0'),
(5769, 611, '_elementor_pro_version', '3.35.0'),
(5793, 611, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Adult Day Services \\n Home Care Services  \\nTransportation (non-medical) \",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment -  Oasis Health Care Community\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5797, 623, '_elementor_template_type', 'wp-page'),
(5796, 623, '_elementor_edit_mode', 'builder'),
(5794, 623, '_wp_page_template', 'elementor_header_footer'),
(6462, 685, '_wp_page_template', 'elementor_header_footer'),
(5779, 621, '_wp_page_template', 'elementor_header_footer'),
(5781, 621, '_elementor_edit_mode', 'builder'),
(5782, 621, '_elementor_template_type', 'wp-page'),
(5783, 621, '_elementor_version', '3.35.0'),
(5784, 621, '_elementor_pro_version', '3.35.0'),
(5785, 621, '_elementor_page_settings', 'a:0:{}'),
(5786, 622, '_wp_page_template', 'elementor_header_footer'),
(5788, 622, '_elementor_edit_mode', 'builder'),
(5789, 622, '_elementor_template_type', 'wp-page'),
(5790, 622, '_elementor_version', '3.35.0'),
(5791, 622, '_elementor_pro_version', '3.35.0'),
(5792, 622, '_elementor_page_settings', 'a:0:{}'),
(5798, 623, '_elementor_version', '3.35.0'),
(5799, 623, '_elementor_pro_version', '3.35.0'),
(5800, 623, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5819, 626, '_wp_page_template', 'elementor_header_footer'),
(5803, 624, '_wp_page_template', 'elementor_header_footer'),
(5805, 624, '_elementor_edit_mode', 'builder'),
(5806, 624, '_elementor_template_type', 'wp-page'),
(5807, 624, '_elementor_version', '3.35.0'),
(5808, 624, '_elementor_pro_version', '3.35.0'),
(5809, 624, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5810, 624, '_elementor_page_settings', 'a:0:{}'),
(5811, 625, '_wp_page_template', 'elementor_header_footer'),
(5813, 625, '_elementor_edit_mode', 'builder'),
(5814, 625, '_elementor_template_type', 'wp-page'),
(5815, 625, '_elementor_version', '3.35.0'),
(5816, 625, '_elementor_pro_version', '3.35.0'),
(5817, 625, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5818, 625, '_elementor_page_settings', 'a:0:{}'),
(5821, 626, '_elementor_edit_mode', 'builder'),
(5822, 626, '_elementor_template_type', 'wp-page'),
(5823, 626, '_elementor_version', '3.35.0'),
(5824, 626, '_elementor_pro_version', '3.35.0'),
(5825, 626, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6463, 685, '_elementor_edit_mode', 'builder'),
(6442, 683, '_wp_page_template', 'elementor_header_footer'),
(6443, 683, '_elementor_edit_mode', 'builder'),
(6444, 683, '_elementor_template_type', 'wp-page'),
(6445, 683, '_elementor_version', '3.35.0'),
(6446, 683, '_elementor_pro_version', '3.35.0'),
(6447, 683, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Care Plans and Treatments\\nDaily Health Care Monitoring\\nMeals: Breakfast, Lunch & Snacks\\nMedication Reminders\\nNursing, Dietary Counseling\\nPersonal Caregiving\\nTransportation\",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(5835, 627, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5837, 627, '_elementor_screenshot_failed', '2026-02-05 07:14:03'),
(5861, 629, '_elementor_source', 'post'),
(5862, 629, '_elementor_edit_mode', 'builder'),
(5863, 629, '_elementor_template_type', 'header'),
(5864, 629, '_elementor_version', '3.35.0'),
(5865, 629, '_elementor_pro_version', '3.35.0'),
(5866, 629, '_wp_page_template', 'default'),
(5867, 629, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7282, 765, '_elementor_page_settings', 'a:0:{}'),
(7283, 766, '_wp_page_template', 'elementor_header_footer'),
(7284, 766, '_elementor_edit_mode', 'builder'),
(7285, 766, '_elementor_template_type', 'wp-page'),
(7286, 766, '_elementor_version', '3.35.0'),
(7287, 766, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7288, 766, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false}]'),
(5855, 628, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7186, 756, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9060, 952, '_elementor_edit_mode', 'builder'),
(9061, 952, '_elementor_template_type', 'footer'),
(9062, 952, '_elementor_version', '3.35.0'),
(9063, 952, '_elementor_pro_version', '3.35.0'),
(9064, 952, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9065, 952, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5879, 630, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5952, 637, '_elementor_source', 'post'),
(5953, 637, '_elementor_edit_mode', 'builder'),
(5954, 637, '_elementor_template_type', 'header'),
(5955, 637, '_elementor_version', '3.35.0'),
(5956, 637, '_elementor_pro_version', '3.35.0'),
(5957, 637, '_wp_page_template', 'default'),
(5958, 637, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-153.97\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor4\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5968, 638, '_elementor_source', 'post'),
(5969, 638, '_elementor_edit_mode', 'builder'),
(5970, 638, '_elementor_template_type', 'header'),
(5971, 638, '_elementor_version', '3.35.0'),
(5972, 638, '_elementor_pro_version', '3.35.0'),
(5973, 638, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5974, 638, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":314,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(6003, 640, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6009, 641, '_elementor_source', 'post'),
(6010, 641, '_elementor_edit_mode', 'builder'),
(6011, 641, '_elementor_template_type', 'header'),
(6012, 641, '_elementor_version', '3.35.0'),
(6013, 641, '_elementor_pro_version', '3.35.0'),
(6014, 641, '_wp_page_template', 'default'),
(6015, 641, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5886, 631, '_menu_item_type', 'post_type'),
(5887, 631, '_menu_item_menu_item_parent', '0'),
(5888, 631, '_menu_item_object_id', '611'),
(5889, 631, '_menu_item_object', 'page'),
(5890, 631, '_menu_item_target', ''),
(5891, 631, '_menu_item_classes', 'a:1:{i:0;s:11:\"appointment\";}'),
(5892, 631, '_menu_item_xfn', ''),
(5893, 631, '_menu_item_url', ''),
(5896, 594, '_elementor_screenshot_failed', '2026-02-05 10:38:08'),
(5895, 557, '_elementor_screenshot_failed', '2026-02-05 10:37:49'),
(5904, 632, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7196, 757, '_elementor_source', 'post'),
(7197, 757, '_elementor_edit_mode', 'builder'),
(7198, 757, '_elementor_template_type', 'footer'),
(7199, 757, '_elementor_version', '3.35.0'),
(7200, 757, '_elementor_pro_version', '3.35.0'),
(7201, 757, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7202, 757, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7993, 847, '_wp_page_template', 'elementor_header_footer'),
(7994, 847, '_elementor_edit_mode', 'builder'),
(7995, 847, '_elementor_template_type', 'wp-page'),
(7996, 847, '_elementor_version', '3.35.0'),
(7997, 847, '_elementor_pro_version', '3.35.0'),
(7998, 847, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(7249, 761, '_elementor_page_settings', 'a:0:{}'),
(7250, 762, '_wp_page_template', 'elementor_header_footer'),
(7251, 762, '_elementor_edit_mode', 'builder'),
(7252, 762, '_elementor_template_type', 'wp-page'),
(7253, 762, '_elementor_version', '3.35.0'),
(7254, 762, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7255, 762, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5908, 632, '_elementor_screenshot', 'a:2:{s:2:\"id\";i:592;s:3:\"url\";s:127:\"https://mrarif.me/oasis/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_301_2026-02-05-10-05-28_1f3e6502.png\";}'),
(5909, 632, '_elementor_screenshot_failed', '2026-02-05 10:05:53'),
(7257, 762, '_elementor_page_settings', 'a:0:{}'),
(7258, 763, '_wp_page_template', 'elementor_header_footer'),
(7259, 763, '_elementor_edit_mode', 'builder'),
(7260, 763, '_elementor_template_type', 'wp-page'),
(7261, 763, '_elementor_version', '3.35.0'),
(7262, 763, '_elementor_pro_version', '3.35.0'),
(7263, 763, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(5924, 633, '_elementor_page_settings', 'a:0:{}'),
(7221, 759, '_wp_page_template', 'elementor_header_footer'),
(7222, 759, '_elementor_edit_mode', 'builder'),
(7223, 759, '_elementor_template_type', 'wp-page'),
(7224, 759, '_elementor_version', '3.35.0'),
(7225, 759, '_elementor_pro_version', '3.35.0'),
(7226, 759, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7228, 759, '_elementor_page_settings', 'a:0:{}'),
(11134, 1144, '_wp_page_template', 'elementor_header_footer'),
(11135, 1144, '_elementor_edit_mode', 'builder'),
(11136, 1144, '_elementor_template_type', 'wp-page'),
(11137, 1144, '_elementor_version', '3.35.0'),
(11138, 1144, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11139, 1144, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(5927, 634, '_wp_page_template', 'elementor_header_footer'),
(5928, 634, '_elementor_edit_mode', 'builder'),
(5929, 634, '_elementor_template_type', 'wp-page'),
(5930, 634, '_elementor_version', '3.35.0'),
(5931, 634, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5932, 634, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#EF4922\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5934, 634, '_elementor_page_settings', 'a:0:{}'),
(7977, 846, '_elementor_source', 'post'),
(7978, 846, '_elementor_edit_mode', 'builder'),
(7979, 846, '_elementor_template_type', 'footer'),
(7980, 846, '_elementor_version', '3.35.0'),
(7981, 846, '_elementor_pro_version', '3.35.0'),
(7982, 846, '_wp_page_template', 'default'),
(7983, 846, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/oasis-logo-a.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7203, 757, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7211, 758, '_wp_page_template', 'elementor_header_footer'),
(7212, 758, '_elementor_edit_mode', 'builder'),
(7213, 758, '_elementor_template_type', 'wp-page'),
(7214, 758, '_elementor_version', '3.35.0'),
(7215, 758, '_elementor_pro_version', '3.35.0'),
(7216, 758, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(7218, 758, '_elementor_page_settings', 'a:0:{}'),
(5938, 635, '_elementor_edit_mode', 'builder'),
(5939, 635, '_elementor_template_type', 'wp-page'),
(5940, 635, '_elementor_version', '3.35.0'),
(5941, 635, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5942, 635, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8013, 849, '_wp_page_template', 'elementor_header_footer'),
(6540, 691, '_wp_page_template', 'elementor_header_footer'),
(6541, 691, '_elementor_edit_mode', 'builder'),
(6542, 691, '_elementor_template_type', 'wp-page'),
(6543, 691, '_elementor_version', '3.35.0'),
(6544, 691, '_elementor_pro_version', '3.35.0'),
(6545, 691, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1e793d4\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (PRN \\/ Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6546, 691, '_elementor_page_settings', 'a:0:{}'),
(6551, 692, '_elementor_edit_mode', 'builder'),
(6552, 692, '_elementor_template_type', 'wp-page'),
(6553, 692, '_elementor_version', '3.35.0'),
(6554, 692, '_elementor_pro_version', '3.35.0'),
(6555, 692, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6106, 650, '_elementor_edit_mode', 'builder'),
(6085, 648, '_wp_page_template', 'elementor_header_footer'),
(6086, 648, '_elementor_edit_mode', 'builder'),
(6087, 648, '_elementor_template_type', 'wp-page'),
(6088, 648, '_elementor_version', '3.35.0'),
(6089, 648, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6090, 648, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5950, 636, '_wp_attached_file', '2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png'),
(5951, 636, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:862;s:6:\"height\";i:341;s:4:\"file\";s:47:\"2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\";s:8:\"filesize\";i:258461;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Oasis-Adult-Day-Care-Center-logo-ab-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Oasis-Adult-Day-Care-Center-logo-ab-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23505;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Oasis-Adult-Day-Care-Center-logo-ab-768x304.png\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160397;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(5959, 637, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7242, 761, '_wp_page_template', 'elementor_header_footer'),
(7243, 761, '_elementor_edit_mode', 'builder'),
(7244, 761, '_elementor_template_type', 'wp-page'),
(7245, 761, '_elementor_version', '3.35.0'),
(7246, 761, '_elementor_pro_version', '3.35.0'),
(7247, 761, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(6563, 693, '_edit_last', '1'),
(6564, 693, '_edit_lock', '1771486476:1'),
(6565, 693, '_wp_page_template', 'elementor_header_footer'),
(6566, 693, 'site-sidebar-layout', 'no-sidebar'),
(6571, 693, 'theme-transparent-header-meta', 'default'),
(6568, 693, 'ast-site-content-layout', 'full-width-container'),
(6569, 693, 'site-content-style', 'default'),
(6570, 693, 'site-sidebar-style', 'default'),
(6572, 693, 'astra-migrate-meta-layouts', 'set'),
(6573, 695, '_menu_item_type', 'post_type'),
(6574, 695, '_menu_item_menu_item_parent', '36'),
(6575, 695, '_menu_item_object_id', '693'),
(6576, 695, '_menu_item_object', 'page'),
(6577, 695, '_menu_item_target', ''),
(6578, 695, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(6579, 695, '_menu_item_xfn', ''),
(6580, 695, '_menu_item_url', ''),
(6593, 37, '_wp_old_date', '2026-02-05'),
(6582, 35, '_wp_old_date', '2026-02-05'),
(6583, 31, '_wp_old_date', '2026-02-05'),
(6584, 38, '_wp_old_date', '2026-02-05'),
(6585, 366, '_wp_old_date', '2026-02-05'),
(6586, 365, '_wp_old_date', '2026-02-05'),
(6587, 364, '_wp_old_date', '2026-02-05'),
(6588, 363, '_wp_old_date', '2026-02-05'),
(6589, 362, '_wp_old_date', '2026-02-05'),
(6590, 361, '_wp_old_date', '2026-02-05'),
(6591, 360, '_wp_old_date', '2026-02-05'),
(6592, 36, '_wp_old_date', '2026-02-05'),
(6594, 33, '_wp_old_date', '2026-02-05'),
(6595, 32, '_wp_old_date', '2026-02-05'),
(6596, 34, '_wp_old_date', '2026-02-05'),
(6597, 631, '_wp_old_date', '2026-02-05'),
(5963, 637, '_elementor_screenshot_failed', '2026-02-05 10:37:30'),
(5983, 639, '_elementor_source', 'post'),
(5984, 639, '_elementor_edit_mode', 'builder'),
(5985, 639, '_elementor_template_type', 'header'),
(5986, 639, '_elementor_version', '3.35.0'),
(5987, 639, '_elementor_pro_version', '3.35.0'),
(5988, 639, '_wp_page_template', 'default'),
(5989, 639, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#EF492200\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5975, 638, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(5996, 640, '_elementor_source', 'post'),
(5997, 640, '_elementor_edit_mode', 'builder'),
(5998, 640, '_elementor_template_type', 'header'),
(5999, 640, '_elementor_version', '3.35.0'),
(6000, 640, '_elementor_pro_version', '3.35.0'),
(6001, 640, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6002, 640, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":371,\"sizes\":[]},\"flex_justify_content\":\"flex-end\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(5990, 639, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6022, 642, '_elementor_source', 'post'),
(6023, 642, '_elementor_edit_mode', 'builder'),
(6024, 642, '_elementor_template_type', 'header'),
(6025, 642, '_elementor_version', '3.35.0'),
(6026, 642, '_elementor_pro_version', '3.35.0'),
(6027, 642, '_wp_page_template', 'default'),
(6028, 642, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor4\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor4\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(6029, 642, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6035, 643, '_elementor_source', 'post'),
(6036, 643, '_elementor_edit_mode', 'builder'),
(6037, 643, '_elementor_template_type', 'header'),
(6038, 643, '_elementor_version', '3.35.0'),
(6039, 643, '_elementor_pro_version', '3.35.0'),
(6040, 643, '_wp_page_template', 'default'),
(6041, 643, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"gradient\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.53,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"]},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(6016, 641, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6604, 696, '_elementor_page_settings', 'a:0:{}'),
(8061, 853, '_elementor_source', 'post'),
(8062, 853, '_elementor_edit_mode', 'builder'),
(8063, 853, '_elementor_template_type', 'header');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8064, 853, '_elementor_version', '3.35.0'),
(8065, 853, '_elementor_pro_version', '3.35.0'),
(8066, 853, '_wp_page_template', 'default'),
(8067, 853, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(7191, 756, '_elementor_screenshot_failed', '2026-02-08 15:39:05'),
(6042, 643, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6050, 644, '_wp_attached_file', '2026/02/Oasis-Adult-Day-Care-Center-aa.jpg'),
(6051, 644, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:42:\"2026/02/Oasis-Adult-Day-Care-Center-aa.jpg\";s:8:\"filesize\";i:178937;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15030;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Oasis-Adult-Day-Care-Center-aa-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98200;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7324;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Oasis-Adult-Day-Care-Center-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62921;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"Oasis-Adult-Day-Care-Center-aa-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184345;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6059, 645, '_elementor_page_settings', 'a:0:{}'),
(7919, 839, '_wp_page_template', 'elementor_header_footer'),
(7920, 839, '_elementor_edit_mode', 'builder'),
(7921, 839, '_elementor_template_type', 'wp-page'),
(7922, 839, '_elementor_version', '3.35.0'),
(7923, 839, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7924, 839, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7177, 755, '_wp_trash_meta_status', 'publish'),
(7178, 755, '_wp_trash_meta_time', '1770615715'),
(7187, 756, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6062, 646, '_wp_page_template', 'elementor_header_footer'),
(6063, 646, '_elementor_edit_mode', 'builder'),
(6064, 646, '_elementor_template_type', 'wp-page'),
(6065, 646, '_elementor_version', '3.35.0'),
(6066, 646, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6067, 646, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/home-banner-a.jpg\",\"id\":44,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6069, 646, '_elementor_page_settings', 'a:0:{}'),
(7908, 838, '_wp_page_template', 'elementor_header_footer'),
(7888, 836, '_wp_page_template', 'elementor_header_footer'),
(7889, 836, '_elementor_edit_mode', 'builder'),
(7890, 836, '_elementor_template_type', 'wp-page'),
(7891, 836, '_elementor_version', '3.35.0'),
(7892, 836, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7893, 836, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7231, 760, '_wp_page_template', 'elementor_header_footer'),
(7232, 760, '_elementor_edit_mode', 'builder'),
(7233, 760, '_elementor_template_type', 'wp-page'),
(7234, 760, '_elementor_version', '3.35.0'),
(7235, 760, '_elementor_pro_version', '3.35.0'),
(7236, 760, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}]},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(7926, 839, '_elementor_page_settings', 'a:0:{}'),
(7927, 840, '_wp_page_template', 'elementor_header_footer'),
(7928, 840, '_elementor_edit_mode', 'builder'),
(7929, 840, '_elementor_template_type', 'wp-page'),
(7930, 840, '_elementor_version', '3.35.0'),
(7931, 840, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7932, 840, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6072, 647, '_wp_page_template', 'elementor_header_footer'),
(6073, 647, '_elementor_edit_mode', 'builder'),
(6074, 647, '_elementor_template_type', 'wp-page'),
(6075, 647, '_elementor_version', '3.35.0'),
(6076, 647, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6077, 647, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6608, 697, '_wp_page_template', 'elementor_header_footer'),
(6609, 697, '_elementor_edit_mode', 'builder'),
(6610, 697, '_elementor_template_type', 'wp-page'),
(6611, 697, '_elementor_version', '3.35.0'),
(6612, 697, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6613, 697, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6132, 653, '_wp_page_template', 'elementor_header_footer'),
(6116, 651, '_wp_page_template', 'elementor_header_footer'),
(6117, 651, '_elementor_edit_mode', 'builder'),
(6118, 651, '_elementor_template_type', 'wp-page'),
(6119, 651, '_elementor_version', '3.35.0'),
(6120, 651, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6121, 651, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6092, 648, '_elementor_page_settings', 'a:0:{}'),
(7154, 752, '_elementor_page_settings', 'a:0:{}'),
(7155, 753, '_wp_page_template', 'elementor_header_footer'),
(7156, 753, '_elementor_edit_mode', 'builder'),
(7157, 753, '_elementor_template_type', 'wp-page'),
(7158, 753, '_elementor_version', '3.35.0'),
(7159, 753, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7160, 753, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6095, 649, '_wp_page_template', 'elementor_header_footer'),
(6096, 649, '_elementor_edit_mode', 'builder'),
(6097, 649, '_elementor_template_type', 'wp-page'),
(6098, 649, '_elementor_version', '3.35.0'),
(6099, 649, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6100, 649, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color\":\"#BDBDBD\"},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6102, 649, '_elementor_page_settings', 'a:0:{}'),
(6107, 650, '_elementor_template_type', 'wp-page'),
(6108, 650, '_elementor_version', '3.35.0'),
(6109, 650, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6110, 650, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"vh\",\"size\":95,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6614, 697, '_elementor_page_settings', 'a:0:{}'),
(6131, 652, '_elementor_page_settings', 'a:0:{}'),
(6133, 653, '_elementor_edit_mode', 'builder'),
(6134, 653, '_elementor_template_type', 'wp-page'),
(6135, 653, '_elementor_version', '3.35.0'),
(6136, 653, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6137, 653, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6374, 678, '_wp_page_template', 'elementor_header_footer'),
(6141, 654, '_wp_page_template', 'elementor_header_footer'),
(6142, 654, '_elementor_edit_mode', 'builder'),
(6143, 654, '_elementor_template_type', 'wp-page'),
(6144, 654, '_elementor_version', '3.35.0'),
(6145, 654, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6146, 654, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6148, 654, '_elementor_page_settings', 'a:0:{}'),
(6149, 655, '_wp_page_template', 'elementor_header_footer'),
(6150, 655, '_elementor_edit_mode', 'builder'),
(6151, 655, '_elementor_template_type', 'wp-page'),
(6152, 655, '_elementor_version', '3.35.0'),
(6153, 655, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6154, 655, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.67,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6156, 655, '_elementor_page_settings', 'a:0:{}'),
(6157, 656, '_wp_page_template', 'elementor_header_footer'),
(6158, 656, '_elementor_edit_mode', 'builder'),
(6159, 656, '_elementor_template_type', 'wp-page'),
(6160, 656, '_elementor_version', '3.35.0'),
(6161, 656, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6162, 656, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6190, 660, '_wp_page_template', 'elementor_header_footer'),
(6170, 658, '_wp_page_template', 'elementor_header_footer'),
(6171, 658, '_elementor_edit_mode', 'builder'),
(6172, 658, '_elementor_template_type', 'wp-page'),
(6173, 658, '_elementor_version', '3.35.0'),
(6174, 658, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6175, 658, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6223, 663, '_wp_page_template', 'elementor_header_footer'),
(6203, 661, '_wp_page_template', 'elementor_header_footer'),
(6204, 661, '_elementor_edit_mode', 'builder'),
(6205, 661, '_elementor_template_type', 'wp-page'),
(6206, 661, '_elementor_version', '3.35.0'),
(6207, 661, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6208, 661, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6340, 673, '_elementor_page_settings', 'a:0:{}'),
(6341, 674, '_wp_page_template', 'elementor_header_footer'),
(6342, 674, '_elementor_edit_mode', 'builder'),
(6343, 674, '_elementor_template_type', 'wp-page'),
(6344, 674, '_elementor_version', '3.35.0'),
(6345, 674, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6346, 674, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10912, 1122, '_wp_attached_file', '2026/02/Oasis-Adult-DayCare-Center.webp'),
(10913, 1122, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:39:\"2026/02/Oasis-Adult-DayCare-Center.webp\";s:8:\"filesize\";i:113152;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Oasis-Adult-DayCare-Center-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20752;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Oasis-Adult-DayCare-Center-1024x682.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:73654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Oasis-Adult-DayCare-Center-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13506;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Oasis-Adult-DayCare-Center-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:53814;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Oasis-Adult-DayCare-Center-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:117276;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6177, 658, '_elementor_page_settings', 'a:0:{}'),
(6180, 659, '_wp_page_template', 'elementor_header_footer'),
(6181, 659, '_elementor_edit_mode', 'builder'),
(6182, 659, '_elementor_template_type', 'wp-page'),
(6183, 659, '_elementor_version', '3.35.0'),
(6184, 659, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6185, 659, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-aa.jpg\",\"id\":644,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6187, 659, '_elementor_page_settings', 'a:0:{}'),
(7128, 750, '_wp_page_template', 'elementor_header_footer'),
(7129, 750, '_elementor_edit_mode', 'builder'),
(7130, 750, '_elementor_template_type', 'wp-page'),
(7131, 750, '_elementor_version', '3.35.0'),
(7132, 750, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7133, 750, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6191, 660, '_elementor_edit_mode', 'builder'),
(6192, 660, '_elementor_template_type', 'wp-page'),
(6193, 660, '_elementor_version', '3.35.0'),
(6194, 660, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6195, 660, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6618, 698, '_wp_page_template', 'elementor_header_footer'),
(6619, 698, '_elementor_edit_mode', 'builder'),
(6620, 698, '_elementor_template_type', 'wp-page'),
(6621, 698, '_elementor_version', '3.35.0'),
(6622, 698, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6623, 698, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6256, 666, '_wp_page_template', 'elementor_header_footer'),
(6236, 664, '_wp_page_template', 'elementor_header_footer'),
(6237, 664, '_elementor_edit_mode', 'builder'),
(6238, 664, '_elementor_template_type', 'wp-page'),
(6239, 664, '_elementor_version', '3.35.0'),
(6240, 664, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6241, 664, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6210, 661, '_elementor_page_settings', 'a:0:{}'),
(7125, 749, '_elementor_page_settings', 'a:0:{}'),
(6213, 662, '_wp_page_template', 'elementor_header_footer'),
(6214, 662, '_elementor_edit_mode', 'builder'),
(6215, 662, '_elementor_template_type', 'wp-page'),
(6216, 662, '_elementor_version', '3.35.0'),
(6217, 662, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6218, 662, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":674,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6220, 662, '_elementor_page_settings', 'a:0:{}'),
(7118, 749, '_wp_page_template', 'elementor_header_footer'),
(7119, 749, '_elementor_edit_mode', 'builder'),
(7120, 749, '_elementor_template_type', 'wp-page'),
(7121, 749, '_elementor_version', '3.35.0'),
(7122, 749, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7123, 749, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6224, 663, '_elementor_edit_mode', 'builder'),
(6225, 663, '_elementor_template_type', 'wp-page'),
(6226, 663, '_elementor_version', '3.35.0'),
(6227, 663, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6228, 663, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6289, 669, '_wp_page_template', 'elementor_header_footer'),
(6269, 667, '_wp_page_template', 'elementor_header_footer'),
(6270, 667, '_elementor_edit_mode', 'builder'),
(6271, 667, '_elementor_template_type', 'wp-page'),
(6272, 667, '_elementor_version', '3.35.0'),
(6273, 667, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6274, 667, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6243, 664, '_elementor_page_settings', 'a:0:{}'),
(9169, 962, '_wp_page_template', 'elementor_header_footer'),
(9149, 960, '_wp_page_template', 'elementor_header_footer'),
(9151, 960, '_elementor_edit_mode', 'builder'),
(9152, 960, '_elementor_template_type', 'wp-page'),
(9153, 960, '_elementor_version', '3.35.0'),
(9154, 960, '_elementor_pro_version', '3.35.0'),
(9155, 960, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7115, 748, '_elementor_page_settings', 'a:0:{}'),
(6246, 665, '_wp_page_template', 'elementor_header_footer'),
(6247, 665, '_elementor_edit_mode', 'builder'),
(6248, 665, '_elementor_template_type', 'wp-page'),
(6249, 665, '_elementor_version', '3.35.0'),
(6250, 665, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6251, 665, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6253, 665, '_elementor_page_settings', 'a:0:{}'),
(7090, 747, '_wp_page_template', 'elementor_header_footer'),
(7092, 747, '_elementor_edit_mode', 'builder'),
(7093, 747, '_elementor_template_type', 'wp-page'),
(7094, 747, '_elementor_version', '3.35.0'),
(7095, 747, '_elementor_pro_version', '3.35.0'),
(7096, 747, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6257, 666, '_elementor_edit_mode', 'builder'),
(6258, 666, '_elementor_template_type', 'wp-page'),
(6259, 666, '_elementor_version', '3.35.0'),
(6260, 666, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6261, 666, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6322, 672, '_wp_page_template', 'elementor_header_footer'),
(6302, 670, '_wp_page_template', 'elementor_header_footer'),
(6303, 670, '_elementor_edit_mode', 'builder'),
(6304, 670, '_elementor_template_type', 'wp-page'),
(6305, 670, '_elementor_version', '3.35.0'),
(6306, 670, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6307, 670, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6276, 667, '_elementor_page_settings', 'a:0:{}'),
(7077, 745, '_elementor_page_settings', 'a:0:{}'),
(7080, 746, '_wp_page_template', 'elementor_header_footer'),
(7082, 746, '_elementor_edit_mode', 'builder'),
(7083, 746, '_elementor_template_type', 'wp-page'),
(7084, 746, '_elementor_version', '3.35.0'),
(7085, 746, '_elementor_pro_version', '3.35.0'),
(7086, 746, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7087, 746, '_elementor_page_settings', 'a:0:{}'),
(6279, 668, '_wp_page_template', 'elementor_header_footer'),
(6280, 668, '_elementor_edit_mode', 'builder'),
(6281, 668, '_elementor_template_type', 'wp-page'),
(6282, 668, '_elementor_version', '3.35.0'),
(6283, 668, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6284, 668, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6286, 668, '_elementor_page_settings', 'a:0:{}'),
(7054, 743, '_elementor_page_settings', 'a:0:{}'),
(7057, 744, '_wp_page_template', 'elementor_header_footer'),
(7059, 744, '_elementor_edit_mode', 'builder'),
(7060, 744, '_elementor_template_type', 'wp-page'),
(7061, 744, '_elementor_version', '3.35.0'),
(7062, 744, '_elementor_pro_version', '3.35.0'),
(7063, 744, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9113, 956, '_wp_page_template', 'elementor_header_footer'),
(9115, 956, '_elementor_edit_mode', 'builder'),
(9116, 956, '_elementor_template_type', 'wp-page'),
(9117, 956, '_elementor_version', '3.35.0'),
(9118, 956, '_elementor_pro_version', '3.35.0'),
(9119, 956, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6290, 669, '_elementor_edit_mode', 'builder'),
(6291, 669, '_elementor_template_type', 'wp-page'),
(6292, 669, '_elementor_version', '3.35.0'),
(6293, 669, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6294, 669, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7139, 751, '_wp_page_template', 'elementor_header_footer'),
(7140, 751, '_elementor_edit_mode', 'builder'),
(7141, 751, '_elementor_template_type', 'wp-page'),
(7142, 751, '_elementor_version', '3.35.0'),
(7143, 751, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7144, 751, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6715, 705, '_wp_page_template', 'elementor_header_footer'),
(6717, 705, '_elementor_edit_mode', 'builder'),
(6718, 705, '_elementor_template_type', 'wp-page'),
(6719, 705, '_elementor_version', '3.35.0'),
(6720, 705, '_elementor_pro_version', '3.35.0'),
(6721, 705, '_elementor_page_settings', 'a:0:{}'),
(6723, 706, '_wp_page_template', 'elementor_header_footer'),
(6725, 706, '_elementor_edit_mode', 'builder'),
(6726, 706, '_elementor_template_type', 'wp-page'),
(6727, 706, '_elementor_version', '3.35.0'),
(6728, 706, '_elementor_pro_version', '3.35.0'),
(6729, 706, '_elementor_page_settings', 'a:0:{}'),
(6732, 707, '_wp_page_template', 'elementor_header_footer'),
(6734, 707, '_elementor_edit_mode', 'builder'),
(6735, 707, '_elementor_template_type', 'wp-page'),
(6736, 707, '_elementor_version', '3.35.0'),
(6737, 707, '_elementor_pro_version', '3.35.0'),
(6739, 707, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6742, 708, '_wp_page_template', 'elementor_header_footer'),
(6744, 708, '_elementor_edit_mode', 'builder'),
(6745, 708, '_elementor_template_type', 'wp-page'),
(6746, 708, '_elementor_version', '3.35.0'),
(6747, 708, '_elementor_pro_version', '3.35.0'),
(6748, 708, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6749, 708, '_elementor_page_settings', 'a:0:{}'),
(6750, 709, '_wp_page_template', 'elementor_header_footer'),
(6752, 709, '_elementor_edit_mode', 'builder'),
(6753, 709, '_elementor_template_type', 'wp-page'),
(6754, 709, '_elementor_version', '3.35.0'),
(6755, 709, '_elementor_pro_version', '3.35.0'),
(6756, 709, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6349, 675, '_wp_page_template', 'elementor_header_footer'),
(6333, 673, '_wp_page_template', 'elementor_header_footer'),
(6334, 673, '_elementor_edit_mode', 'builder'),
(6335, 673, '_elementor_template_type', 'wp-page'),
(6336, 673, '_elementor_version', '3.35.0'),
(6337, 673, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6338, 673, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6309, 670, '_elementor_page_settings', 'a:0:{}'),
(7070, 745, '_wp_page_template', 'elementor_header_footer'),
(7072, 745, '_elementor_edit_mode', 'builder'),
(7073, 745, '_elementor_template_type', 'wp-page'),
(7074, 745, '_elementor_version', '3.35.0'),
(7075, 745, '_elementor_pro_version', '3.35.0'),
(7076, 745, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8046, 852, '_wp_page_template', 'elementor_header_footer'),
(8026, 850, '_wp_page_template', 'elementor_header_footer'),
(8027, 850, '_elementor_edit_mode', 'builder'),
(8028, 850, '_elementor_template_type', 'wp-page'),
(8029, 850, '_elementor_version', '3.35.0'),
(8030, 850, '_elementor_pro_version', '3.35.0'),
(8031, 850, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(9812, 1023, '_wp_page_template', 'elementor_header_footer'),
(9813, 1023, '_elementor_edit_mode', 'builder'),
(9814, 1023, '_elementor_template_type', 'wp-page'),
(9815, 1023, '_elementor_version', '3.35.0'),
(9816, 1023, '_elementor_pro_version', '3.35.0'),
(9817, 1023, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9593, 1005, '_wp_attached_file', '2026/02/caregiver-aa.jpg'),
(9594, 1005, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:24:\"2026/02/caregiver-aa.jpg\";s:8:\"filesize\";i:77718;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"caregiver-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16639;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"caregiver-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8094;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"caregiver-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70030;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7044, 742, '_elementor_page_settings', 'a:0:{}'),
(7047, 743, '_wp_page_template', 'elementor_header_footer'),
(7049, 743, '_elementor_edit_mode', 'builder'),
(7050, 743, '_elementor_template_type', 'wp-page'),
(7051, 743, '_elementor_version', '3.35.0'),
(7052, 743, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7053, 743, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6312, 671, '_wp_page_template', 'elementor_header_footer'),
(6313, 671, '_elementor_edit_mode', 'builder'),
(6314, 671, '_elementor_template_type', 'wp-page'),
(6315, 671, '_elementor_version', '3.35.0'),
(6316, 671, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6317, 671, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6319, 671, '_elementor_page_settings', 'a:0:{}'),
(7000, 737, '_elementor_page_settings', 'a:0:{}'),
(7010, 739, '_wp_page_template', 'elementor_header_footer'),
(7012, 739, '_elementor_edit_mode', 'builder'),
(7013, 739, '_elementor_template_type', 'wp-page'),
(7014, 739, '_elementor_version', '3.35.0'),
(7015, 739, '_elementor_pro_version', '3.35.0'),
(7016, 739, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7017, 739, '_elementor_page_settings', 'a:0:{}'),
(7018, 740, '_wp_page_template', 'elementor_header_footer'),
(7020, 740, '_elementor_edit_mode', 'builder'),
(7021, 740, '_elementor_template_type', 'wp-page'),
(7022, 740, '_elementor_version', '3.35.0'),
(7023, 740, '_elementor_pro_version', '3.35.0'),
(7024, 740, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7025, 740, '_elementor_page_settings', 'a:0:{}'),
(7028, 741, '_elementor_edit_mode', 'builder'),
(7029, 741, '_elementor_template_type', 'wp-page'),
(7030, 741, '_elementor_version', '3.35.0'),
(7031, 741, '_elementor_pro_version', '3.35.0'),
(7032, 741, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(7037, 742, '_wp_page_template', 'elementor_header_footer'),
(7039, 742, '_elementor_edit_mode', 'builder'),
(7040, 742, '_elementor_template_type', 'wp-page'),
(7041, 742, '_elementor_version', '3.35.0'),
(7042, 742, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7043, 742, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8195, 865, '_elementor_page_settings', 'a:0:{}'),
(8196, 866, '_wp_page_template', 'elementor_header_footer'),
(8197, 866, '_elementor_edit_mode', 'builder'),
(8198, 866, '_elementor_template_type', 'wp-page'),
(8199, 866, '_elementor_version', '3.35.0'),
(8200, 866, '_elementor_pro_version', '3.35.0'),
(8201, 866, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6323, 672, '_elementor_edit_mode', 'builder'),
(6324, 672, '_elementor_template_type', 'wp-page'),
(6325, 672, '_elementor_version', '3.35.0'),
(6326, 672, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6327, 672, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6757, 709, '_elementor_page_settings', 'a:0:{}'),
(6758, 710, '_wp_page_template', 'elementor_header_footer'),
(6760, 710, '_elementor_edit_mode', 'builder'),
(6761, 710, '_elementor_template_type', 'wp-page'),
(6762, 710, '_elementor_version', '3.35.0'),
(6763, 710, '_elementor_pro_version', '3.35.0'),
(6764, 710, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6791, 714, '_wp_page_template', 'elementor_header_footer'),
(6771, 712, '_wp_page_template', 'elementor_header_footer'),
(6773, 712, '_elementor_edit_mode', 'builder'),
(6774, 712, '_elementor_template_type', 'wp-page'),
(6775, 712, '_elementor_version', '3.35.0'),
(6776, 712, '_elementor_pro_version', '3.35.0'),
(6777, 712, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6805, 715, '_wp_page_template', 'elementor_header_footer'),
(6807, 715, '_elementor_edit_mode', 'builder'),
(6808, 715, '_elementor_template_type', 'wp-page'),
(6809, 715, '_elementor_version', '3.35.0'),
(6810, 715, '_elementor_pro_version', '3.35.0'),
(6811, 715, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6769, 711, '_wp_attached_file', '2026/02/Oasis-Home-Care-ss.jpg'),
(6770, 711, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:30:\"2026/02/Oasis-Home-Care-ss.jpg\";s:8:\"filesize\";i:82457;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-ss-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18714;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-ss-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8626;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-ss-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78200;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6778, 712, '_elementor_page_settings', 'a:0:{}'),
(6781, 713, '_wp_page_template', 'elementor_header_footer'),
(6783, 713, '_elementor_edit_mode', 'builder'),
(6784, 713, '_elementor_template_type', 'wp-page'),
(6785, 713, '_elementor_version', '3.35.0'),
(6786, 713, '_elementor_pro_version', '3.35.0'),
(6787, 713, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6788, 713, '_elementor_page_settings', 'a:0:{}'),
(6793, 714, '_elementor_edit_mode', 'builder'),
(6794, 714, '_elementor_template_type', 'wp-page'),
(6795, 714, '_elementor_version', '3.35.0'),
(6796, 714, '_elementor_pro_version', '3.35.0'),
(6797, 714, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8704, 26, '_elementor_page_settings', 'a:0:{}'),
(8705, 26, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;s:13:\"form_metadata\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}}}}'),
(6812, 715, '_elementor_page_settings', 'a:0:{}'),
(6813, 716, '_wp_page_template', 'elementor_header_footer'),
(6815, 716, '_elementor_edit_mode', 'builder'),
(6816, 716, '_elementor_template_type', 'wp-page'),
(6817, 716, '_elementor_version', '3.35.0'),
(6818, 716, '_elementor_pro_version', '3.35.0'),
(6819, 716, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6820, 716, '_elementor_page_settings', 'a:0:{}'),
(6821, 717, '_wp_page_template', 'elementor_header_footer'),
(6823, 717, '_elementor_edit_mode', 'builder'),
(6824, 717, '_elementor_template_type', 'wp-page'),
(6825, 717, '_elementor_version', '3.35.0'),
(6826, 717, '_elementor_pro_version', '3.35.0'),
(6827, 717, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6839, 719, '_wp_page_template', 'elementor_header_footer'),
(6841, 719, '_elementor_edit_mode', 'builder'),
(6842, 719, '_elementor_template_type', 'wp-page'),
(6843, 719, '_elementor_version', '3.35.0'),
(6844, 719, '_elementor_pro_version', '3.35.0'),
(6845, 719, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6855, 721, '_wp_page_template', 'elementor_header_footer'),
(6857, 721, '_elementor_edit_mode', 'builder'),
(6858, 721, '_elementor_template_type', 'wp-page'),
(6859, 721, '_elementor_version', '3.35.0'),
(6860, 721, '_elementor_pro_version', '3.35.0'),
(6861, 721, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6846, 719, '_elementor_page_settings', 'a:0:{}'),
(6847, 720, '_wp_page_template', 'elementor_header_footer'),
(6849, 720, '_elementor_edit_mode', 'builder'),
(6850, 720, '_elementor_template_type', 'wp-page'),
(6851, 720, '_elementor_version', '3.35.0'),
(6852, 720, '_elementor_pro_version', '3.35.0'),
(6853, 720, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8728, 921, '_wp_page_template', 'elementor_header_footer'),
(6348, 674, '_elementor_page_settings', 'a:0:{}'),
(6350, 675, '_elementor_edit_mode', 'builder'),
(6351, 675, '_elementor_template_type', 'wp-page'),
(6352, 675, '_elementor_version', '3.35.0'),
(6353, 675, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6354, 675, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6358, 676, '_wp_page_template', 'elementor_header_footer'),
(6359, 676, '_elementor_edit_mode', 'builder'),
(6360, 676, '_elementor_template_type', 'wp-page'),
(6361, 676, '_elementor_version', '3.35.0'),
(6362, 676, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6363, 676, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6365, 676, '_elementor_page_settings', 'a:0:{}'),
(6366, 677, '_wp_page_template', 'elementor_header_footer'),
(6367, 677, '_elementor_edit_mode', 'builder'),
(6368, 677, '_elementor_template_type', 'wp-page'),
(6369, 677, '_elementor_version', '3.35.0'),
(6370, 677, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6371, 677, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6373, 677, '_elementor_page_settings', 'a:0:{}'),
(6375, 678, '_elementor_edit_mode', 'builder'),
(6376, 678, '_elementor_template_type', 'wp-page'),
(6377, 678, '_elementor_version', '3.35.0'),
(6378, 678, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6379, 678, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6385, 679, '_wp_page_template', 'elementor_header_footer'),
(6386, 679, '_elementor_edit_mode', 'builder'),
(6387, 679, '_elementor_template_type', 'wp-page'),
(6388, 679, '_elementor_version', '3.35.0'),
(6389, 679, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6390, 679, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6598, 696, '_wp_page_template', 'elementor_header_footer'),
(6599, 696, '_elementor_edit_mode', 'builder'),
(6600, 696, '_elementor_template_type', 'wp-page'),
(6601, 696, '_elementor_version', '3.35.0'),
(6602, 696, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6603, 696, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6518, 689, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(6519, 689, '_elementor_screenshot_failed', '2026-02-08 12:32:43'),
(6854, 720, '_elementor_page_settings', 'a:0:{}'),
(6880, 724, '_wp_page_template', 'elementor_header_footer'),
(6864, 722, '_wp_page_template', 'elementor_header_footer'),
(6866, 722, '_elementor_edit_mode', 'builder'),
(6867, 722, '_elementor_template_type', 'wp-page'),
(6868, 722, '_elementor_version', '3.35.0'),
(6869, 722, '_elementor_pro_version', '3.35.0'),
(6870, 722, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6871, 722, '_elementor_page_settings', 'a:0:{}'),
(6872, 723, '_wp_page_template', 'elementor_header_footer'),
(6874, 723, '_elementor_edit_mode', 'builder'),
(6875, 723, '_elementor_template_type', 'wp-page'),
(6876, 723, '_elementor_version', '3.35.0'),
(6877, 723, '_elementor_pro_version', '3.35.0'),
(6878, 723, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6879, 723, '_elementor_page_settings', 'a:0:{}'),
(6882, 724, '_elementor_edit_mode', 'builder'),
(6883, 724, '_elementor_template_type', 'wp-page'),
(6884, 724, '_elementor_version', '3.35.0'),
(6885, 724, '_elementor_pro_version', '3.35.0'),
(6886, 724, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6898, 726, '_wp_page_template', 'elementor_header_footer'),
(6900, 726, '_elementor_edit_mode', 'builder'),
(6901, 726, '_elementor_template_type', 'wp-page'),
(6902, 726, '_elementor_version', '3.35.0'),
(6903, 726, '_elementor_pro_version', '3.35.0'),
(6904, 726, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8708, 919, '_wp_page_template', 'elementor_header_footer'),
(8709, 919, '_elementor_edit_mode', 'builder'),
(8710, 919, '_elementor_template_type', 'wp-page'),
(8711, 919, '_elementor_version', '3.35.0'),
(8712, 919, '_elementor_pro_version', '3.35.0'),
(8713, 919, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Adult Day Services \\n Home Care Services  \\nTransportation (non-medical) \",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(6392, 679, '_elementor_page_settings', 'a:0:{}'),
(6958, 732, '_elementor_page_settings', 'a:0:{}'),
(6959, 733, '_wp_page_template', 'elementor_header_footer'),
(6961, 733, '_elementor_edit_mode', 'builder'),
(6962, 733, '_elementor_template_type', 'wp-page'),
(6963, 733, '_elementor_version', '3.35.0'),
(6964, 733, '_elementor_pro_version', '3.35.0'),
(6965, 733, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6966, 733, '_elementor_page_settings', 'a:0:{}'),
(6967, 734, '_wp_page_template', 'elementor_header_footer'),
(6969, 734, '_elementor_edit_mode', 'builder'),
(6970, 734, '_elementor_template_type', 'wp-page'),
(6971, 734, '_elementor_version', '3.35.0'),
(6972, 734, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6973, 734, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(6985, 736, '_wp_page_template', 'elementor_header_footer'),
(6987, 736, '_elementor_edit_mode', 'builder'),
(6988, 736, '_elementor_template_type', 'wp-page'),
(6989, 736, '_elementor_version', '3.35.0'),
(6990, 736, '_elementor_pro_version', '3.35.0'),
(6991, 736, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7026, 741, '_wp_page_template', 'elementor_header_footer'),
(7001, 738, '_wp_page_template', 'elementor_header_footer'),
(7003, 738, '_elementor_edit_mode', 'builder'),
(7004, 738, '_elementor_template_type', 'wp-page'),
(7005, 738, '_elementor_version', '3.35.0'),
(7006, 738, '_elementor_pro_version', '3.35.0'),
(7007, 738, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(6992, 736, '_elementor_page_settings', 'a:0:{}'),
(6993, 737, '_wp_page_template', 'elementor_header_footer'),
(6995, 737, '_elementor_edit_mode', 'builder'),
(6996, 737, '_elementor_template_type', 'wp-page'),
(6997, 737, '_elementor_version', '3.35.0'),
(6998, 737, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6999, 737, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(6395, 680, '_wp_page_template', 'elementor_header_footer'),
(6396, 680, '_elementor_edit_mode', 'builder'),
(6397, 680, '_elementor_template_type', 'wp-page'),
(6398, 680, '_elementor_version', '3.35.0'),
(6399, 680, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6400, 680, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Adult Day\\nCare Center\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6402, 680, '_elementor_page_settings', 'a:0:{}'),
(6914, 728, '_wp_page_template', 'elementor_header_footer'),
(6916, 728, '_elementor_edit_mode', 'builder'),
(6917, 728, '_elementor_template_type', 'wp-page'),
(6918, 728, '_elementor_version', '3.35.0'),
(6919, 728, '_elementor_pro_version', '3.35.0'),
(6920, 728, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4aa9659\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6905, 726, '_elementor_page_settings', 'a:0:{}'),
(6906, 727, '_wp_page_template', 'elementor_header_footer'),
(6908, 727, '_elementor_edit_mode', 'builder'),
(6909, 727, '_elementor_template_type', 'wp-page'),
(6910, 727, '_elementor_version', '3.35.0'),
(6911, 727, '_elementor_pro_version', '3.35.0'),
(6912, 727, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6913, 727, '_elementor_page_settings', 'a:0:{}'),
(6923, 729, '_wp_page_template', 'elementor_header_footer'),
(6925, 729, '_elementor_edit_mode', 'builder'),
(6926, 729, '_elementor_template_type', 'wp-page'),
(6927, 729, '_elementor_version', '3.35.0'),
(6928, 729, '_elementor_pro_version', '3.35.0'),
(6929, 729, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4aa9659\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6930, 729, '_elementor_page_settings', 'a:0:{}'),
(6931, 730, '_wp_page_template', 'elementor_header_footer'),
(6933, 730, '_elementor_edit_mode', 'builder'),
(6934, 730, '_elementor_template_type', 'wp-page'),
(6935, 730, '_elementor_version', '3.35.0'),
(6936, 730, '_elementor_pro_version', '3.35.0'),
(6937, 730, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4aa9659\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6938, 730, '_elementor_page_settings', 'a:0:{}'),
(6939, 731, '_wp_page_template', 'elementor_header_footer'),
(6941, 731, '_elementor_edit_mode', 'builder'),
(6942, 731, '_elementor_template_type', 'wp-page'),
(6943, 731, '_elementor_version', '3.35.0'),
(6944, 731, '_elementor_pro_version', '3.35.0'),
(6945, 731, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(6951, 732, '_wp_page_template', 'elementor_header_footer'),
(6953, 732, '_elementor_edit_mode', 'builder'),
(6954, 732, '_elementor_template_type', 'wp-page'),
(6955, 732, '_elementor_version', '3.35.0'),
(6956, 732, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6957, 732, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}]},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10176, 1060, '_elementor_edit_mode', 'builder'),
(10155, 1058, '_wp_page_template', 'elementor_header_footer'),
(10156, 1058, '_elementor_edit_mode', 'builder'),
(10157, 1058, '_elementor_template_type', 'wp-page'),
(10158, 1058, '_elementor_version', '3.35.0'),
(10159, 1058, '_elementor_pro_version', '3.35.0'),
(10160, 1058, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7975, 845, '_wp_attached_file', '2026/02/Careers-ab.jpg'),
(7976, 845, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2026/02/Careers-ab.jpg\";s:8:\"filesize\";i:203622;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Careers-ab-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Careers-ab-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10319;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Careers-ab-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(6406, 681, '_elementor_edit_mode', 'builder'),
(6407, 681, '_elementor_template_type', 'wp-page'),
(6408, 681, '_elementor_version', '3.35.0'),
(6409, 681, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6410, 681, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\"},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8737, 611, '_elementor_page_settings', 'a:0:{}'),
(8738, 611, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:4:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;s:13:\"form_metadata\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:5:\"style\";a:3:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:1;}s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:1;}}s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:1;s:5:\"width\";i:1;s:14:\"flex_direction\";i:1;s:11:\"boxed_width\";i:1;}}}}}'),
(10828, 18, '_elementor_page_settings', 'a:0:{}'),
(10829, 18, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"sub_title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;s:20:\"columns_mobile_extra\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_info_box_style\";a:5:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(6484, 686, '_elementor_page_settings', 'a:0:{}'),
(6488, 687, '_wp_page_template', 'elementor_header_footer'),
(6489, 687, '_elementor_edit_mode', 'builder'),
(6490, 687, '_elementor_template_type', 'wp-page'),
(6491, 687, '_elementor_version', '3.35.0'),
(6492, 687, '_elementor_pro_version', '3.35.0'),
(6493, 687, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate,professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(6494, 687, '_elementor_page_settings', 'a:0:{}'),
(11140, 1144, '_elementor_page_settings', 'a:0:{}'),
(6418, 682, '_elementor_edit_mode', 'builder'),
(6419, 682, '_elementor_template_type', 'kit'),
(6420, 682, '_wp_page_template', 'default'),
(6421, 682, '_elementor_page_settings', 'a:22:{s:16:\"site_description\";s:7:\"Welcome\";s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:27:\"Oasis Health Care Community\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:481;s:11:\"viewport_lg\";i:992;s:9:\"site_logo\";a:5:{s:3:\"url\";s:67:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\";s:2:\"id\";i:61;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:71:\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-faveiocn-a.png\";s:2:\"id\";i:60;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1600;s:5:\"sizes\";a:0:{}}s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:18:\"active_breakpoints\";a:5:{i:0;s:15:\"viewport_mobile\";i:1;s:21:\"viewport_mobile_extra\";i:2;s:15:\"viewport_tablet\";i:3;s:21:\"viewport_tablet_extra\";i:4;s:19:\"viewport_widescreen\";}s:15:\"viewport_mobile\";i:480;s:21:\"viewport_mobile_extra\";i:767;s:15:\"viewport_tablet\";i:991;s:21:\"viewport_tablet_extra\";i:1199;s:19:\"viewport_widescreen\";i:1200;}'),
(6422, 682, '_elementor_data', '[]'),
(6423, 682, '_elementor_version', '3.35.0'),
(6424, 682, '_elementor_pro_version', '3.35.0'),
(7873, 834, '_wp_page_template', 'elementor_header_footer'),
(7874, 834, '_elementor_edit_mode', 'builder'),
(7875, 834, '_elementor_template_type', 'wp-page'),
(7876, 834, '_elementor_version', '3.35.0'),
(7877, 834, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7878, 834, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9911, 1032, '_wp_page_template', 'elementor_header_footer'),
(9912, 1032, '_elementor_edit_mode', 'builder'),
(9913, 1032, '_elementor_template_type', 'wp-page'),
(9914, 1032, '_elementor_version', '3.35.0'),
(9915, 1032, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9916, 1032, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(7886, 835, '_wp_attached_file', '2026/02/care-giver-team-a.webp'),
(7887, 835, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2026/02/care-giver-team-a.webp\";s:8:\"filesize\";i:167602;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"care-giver-team-a-300x240.webp\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13752;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"care-giver-team-a-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6560;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"care-giver-team-a-768x614.webp\";s:5:\"width\";i:768;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:47978;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(7895, 836, '_elementor_page_settings', 'a:0:{}'),
(7898, 837, '_wp_page_template', 'elementor_header_footer'),
(7899, 837, '_elementor_edit_mode', 'builder'),
(7900, 837, '_elementor_template_type', 'wp-page'),
(7901, 837, '_elementor_version', '3.35.0'),
(7902, 837, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7903, 837, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7905, 837, '_elementor_page_settings', 'a:0:{}'),
(7909, 838, '_elementor_edit_mode', 'builder'),
(7910, 838, '_elementor_template_type', 'wp-page'),
(7911, 838, '_elementor_version', '3.35.0'),
(7912, 838, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7913, 838, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7934, 840, '_elementor_page_settings', 'a:0:{}'),
(7935, 841, '_wp_page_template', 'elementor_header_footer'),
(7936, 841, '_elementor_edit_mode', 'builder'),
(7937, 841, '_elementor_template_type', 'wp-page'),
(7938, 841, '_elementor_version', '3.35.0'),
(7939, 841, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7940, 841, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9180, 963, '_wp_page_template', 'elementor_header_footer'),
(9181, 963, '_elementor_edit_mode', 'builder'),
(9182, 963, '_elementor_template_type', 'wp-page'),
(9183, 963, '_elementor_version', '3.35.0'),
(9184, 963, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9185, 963, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(7950, 842, '_elementor_page_settings', 'a:0:{}'),
(7954, 843, '_wp_page_template', 'elementor_header_footer'),
(7955, 843, '_elementor_edit_mode', 'builder'),
(7956, 843, '_elementor_template_type', 'wp-page'),
(7957, 843, '_elementor_version', '3.35.0'),
(7958, 843, '_elementor_pro_version', '3.35.0'),
(7959, 843, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-abc.jpg\",\"id\":201,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7960, 843, '_elementor_page_settings', 'a:0:{}'),
(7964, 844, '_wp_page_template', 'elementor_header_footer'),
(7965, 844, '_elementor_edit_mode', 'builder'),
(7966, 844, '_elementor_template_type', 'wp-page'),
(7967, 844, '_elementor_version', '3.35.0'),
(7968, 844, '_elementor_pro_version', '3.35.0'),
(7969, 844, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(7984, 846, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(7988, 846, '_elementor_screenshot_failed', '2026-02-09 07:11:19'),
(8000, 847, '_elementor_page_settings', 'a:0:{}'),
(8003, 848, '_wp_page_template', 'elementor_header_footer'),
(8004, 848, '_elementor_edit_mode', 'builder'),
(8005, 848, '_elementor_template_type', 'wp-page'),
(8006, 848, '_elementor_version', '3.35.0'),
(8007, 848, '_elementor_pro_version', '3.35.0'),
(8008, 848, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-aav.jpg\",\"id\":387,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8010, 848, '_elementor_page_settings', 'a:0:{}'),
(8014, 849, '_elementor_edit_mode', 'builder'),
(8015, 849, '_elementor_template_type', 'wp-page'),
(8016, 849, '_elementor_version', '3.35.0'),
(8017, 849, '_elementor_pro_version', '3.35.0'),
(8018, 849, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8089, 855, '_wp_page_template', 'elementor_header_footer'),
(8090, 855, '_elementor_edit_mode', 'builder'),
(8091, 855, '_elementor_template_type', 'wp-page'),
(8092, 855, '_elementor_version', '3.35.0'),
(8093, 855, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8094, 855, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8033, 850, '_elementor_page_settings', 'a:0:{}'),
(8036, 851, '_wp_page_template', 'elementor_header_footer'),
(8037, 851, '_elementor_edit_mode', 'builder'),
(8038, 851, '_elementor_template_type', 'wp-page'),
(8039, 851, '_elementor_version', '3.35.0'),
(8040, 851, '_elementor_pro_version', '3.35.0'),
(8041, 851, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8043, 851, '_elementor_page_settings', 'a:0:{}'),
(8047, 852, '_elementor_edit_mode', 'builder'),
(8048, 852, '_elementor_template_type', 'wp-page'),
(8049, 852, '_elementor_version', '3.35.0'),
(8050, 852, '_elementor_pro_version', '3.35.0'),
(8051, 852, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8124, 859, '_wp_page_template', 'elementor_header_footer'),
(8125, 859, '_elementor_edit_mode', 'builder'),
(8126, 859, '_elementor_template_type', 'wp-page'),
(8127, 859, '_elementor_version', '3.35.0'),
(8128, 859, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8129, 859, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(9459, 991, '_wp_page_template', 'elementor_header_footer'),
(9439, 989, '_wp_page_template', 'elementor_header_footer'),
(9440, 989, '_elementor_edit_mode', 'builder'),
(9441, 989, '_elementor_template_type', 'wp-page'),
(9442, 989, '_elementor_version', '3.35.0'),
(9443, 989, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9444, 989, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9211, 966, '_edit_last', '1'),
(9212, 966, '_edit_lock', '1770634397:1'),
(9213, 966, '_wp_page_template', 'elementor_header_footer'),
(9214, 966, 'site-sidebar-layout', 'no-sidebar'),
(9219, 966, 'theme-transparent-header-meta', 'default'),
(9216, 966, 'ast-site-content-layout', 'full-width-container'),
(9217, 966, 'site-content-style', 'default'),
(9218, 966, 'site-sidebar-style', 'default'),
(9220, 966, 'astra-migrate-meta-layouts', 'set'),
(9221, 968, '_menu_item_type', 'post_type'),
(9222, 968, '_menu_item_menu_item_parent', '0'),
(9223, 968, '_menu_item_object_id', '966'),
(9224, 968, '_menu_item_object', 'page'),
(9225, 968, '_menu_item_target', ''),
(9226, 968, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(9227, 968, '_menu_item_xfn', ''),
(9228, 968, '_menu_item_url', ''),
(9244, 32, '_wp_old_date', '2026-02-08'),
(9230, 35, '_wp_old_date', '2026-02-08'),
(9231, 31, '_wp_old_date', '2026-02-08'),
(9232, 38, '_wp_old_date', '2026-02-08'),
(9233, 366, '_wp_old_date', '2026-02-08'),
(9234, 365, '_wp_old_date', '2026-02-08'),
(9235, 364, '_wp_old_date', '2026-02-08'),
(9236, 363, '_wp_old_date', '2026-02-08'),
(9237, 362, '_wp_old_date', '2026-02-08'),
(9238, 361, '_wp_old_date', '2026-02-08'),
(9239, 360, '_wp_old_date', '2026-02-08'),
(9240, 36, '_wp_old_date', '2026-02-08'),
(9241, 695, '_wp_old_date', '2026-02-08'),
(9242, 37, '_wp_old_date', '2026-02-08'),
(9243, 33, '_wp_old_date', '2026-02-08'),
(9245, 34, '_wp_old_date', '2026-02-08'),
(9246, 631, '_wp_old_date', '2026-02-08'),
(9250, 966, '_elementor_edit_mode', 'builder'),
(9251, 966, '_astra_content_layout_flag', 'disabled'),
(9273, 966, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"height\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9253, 966, 'ast-title-bar-display', 'disabled'),
(9254, 966, 'ast-featured-img', 'disabled'),
(9255, 966, '_elementor_template_type', 'wp-page'),
(9256, 966, '_elementor_version', '3.35.0'),
(9257, 966, '_elementor_pro_version', '3.35.0'),
(9259, 969, '_wp_page_template', 'elementor_header_footer'),
(9261, 969, '_elementor_edit_mode', 'builder'),
(9262, 969, '_elementor_template_type', 'wp-page'),
(9263, 969, '_elementor_version', '3.35.0'),
(9264, 969, '_elementor_pro_version', '3.35.0'),
(9265, 969, '_elementor_page_settings', 'a:0:{}'),
(9266, 970, '_wp_page_template', 'elementor_header_footer'),
(9268, 970, '_elementor_edit_mode', 'builder'),
(9269, 970, '_elementor_template_type', 'wp-page'),
(9270, 970, '_elementor_version', '3.35.0'),
(9271, 970, '_elementor_pro_version', '3.35.0'),
(9272, 970, '_elementor_page_settings', 'a:0:{}'),
(9274, 971, '_wp_page_template', 'elementor_header_footer'),
(9276, 971, '_elementor_edit_mode', 'builder'),
(9277, 971, '_elementor_template_type', 'wp-page'),
(9278, 971, '_elementor_version', '3.35.0'),
(9279, 971, '_elementor_pro_version', '3.35.0'),
(9280, 971, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(9283, 972, '_wp_page_template', 'elementor_header_footer'),
(9285, 972, '_elementor_edit_mode', 'builder'),
(9286, 972, '_elementor_template_type', 'wp-page'),
(9287, 972, '_elementor_version', '3.35.0'),
(9288, 972, '_elementor_pro_version', '3.35.0'),
(9289, 972, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(9290, 972, '_elementor_page_settings', 'a:0:{}'),
(9291, 973, '_wp_page_template', 'elementor_header_footer'),
(9293, 973, '_elementor_edit_mode', 'builder'),
(9294, 973, '_elementor_template_type', 'wp-page'),
(9295, 973, '_elementor_version', '3.35.0'),
(9296, 973, '_elementor_pro_version', '3.35.0'),
(9297, 973, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[],\"isInner\":true}],\"isInner\":false}]'),
(9298, 973, '_elementor_page_settings', 'a:0:{}'),
(9299, 974, '_wp_page_template', 'elementor_header_footer'),
(9301, 974, '_elementor_edit_mode', 'builder'),
(9302, 974, '_elementor_template_type', 'wp-page'),
(9303, 974, '_elementor_version', '3.35.0'),
(9304, 974, '_elementor_pro_version', '3.35.0'),
(9305, 974, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.<\\/p>\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9341, 978, '_wp_page_template', 'elementor_header_footer'),
(9343, 978, '_elementor_edit_mode', 'builder'),
(9344, 978, '_elementor_template_type', 'wp-page'),
(9345, 978, '_elementor_version', '3.35.0'),
(9346, 978, '_elementor_pro_version', '3.35.0'),
(9347, 978, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}]},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.<\\/p>\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}]},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8068, 853, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(8072, 853, '_elementor_screenshot_failed', '2026-02-08 15:38:44'),
(9678, 1013, '_elementor_source', 'post'),
(9679, 1013, '_elementor_edit_mode', 'builder'),
(9680, 1013, '_elementor_template_type', 'header'),
(9681, 1013, '_elementor_version', '3.35.0'),
(9682, 1013, '_elementor_pro_version', '3.35.0'),
(9683, 1013, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9684, 1013, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(8109, 857, '_wp_page_template', 'elementor_header_footer'),
(8110, 857, '_elementor_edit_mode', 'builder'),
(8111, 857, '_elementor_template_type', 'wp-page'),
(8112, 857, '_elementor_version', '3.35.0'),
(8113, 857, '_elementor_pro_version', '3.35.0'),
(8114, 857, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8096, 855, '_elementor_page_settings', 'a:0:{}'),
(8099, 856, '_wp_page_template', 'elementor_header_footer'),
(8100, 856, '_elementor_edit_mode', 'builder'),
(8101, 856, '_elementor_template_type', 'wp-page'),
(8102, 856, '_elementor_version', '3.35.0'),
(8103, 856, '_elementor_pro_version', '3.35.0'),
(8104, 856, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8106, 856, '_elementor_page_settings', 'a:0:{}'),
(8157, 862, '_wp_page_template', 'elementor_header_footer'),
(8158, 862, '_elementor_edit_mode', 'builder'),
(8159, 862, '_elementor_template_type', 'wp-page'),
(8160, 862, '_elementor_version', '3.35.0'),
(8161, 862, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8162, 862, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8122, 858, '_wp_attached_file', '2026/02/Work-Where-Your-Compassion-Matters-ag.jpg'),
(8123, 858, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:49:\"2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\";s:8:\"filesize\";i:100817;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Work-Where-Your-Compassion-Matters-ag-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21054;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Work-Where-Your-Compassion-Matters-ag-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10166;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Work-Where-Your-Compassion-Matters-ag-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92717;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(8131, 859, '_elementor_page_settings', 'a:0:{}'),
(8134, 860, '_wp_page_template', 'elementor_header_footer'),
(8135, 860, '_elementor_edit_mode', 'builder'),
(8136, 860, '_elementor_template_type', 'wp-page'),
(8137, 860, '_elementor_version', '3.35.0'),
(8138, 860, '_elementor_pro_version', '3.35.0'),
(8139, 860, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8141, 860, '_elementor_page_settings', 'a:0:{}'),
(8144, 861, '_wp_page_template', 'elementor_header_footer'),
(8145, 861, '_elementor_edit_mode', 'builder'),
(8146, 861, '_elementor_template_type', 'wp-page'),
(8147, 861, '_elementor_version', '3.35.0'),
(8148, 861, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8149, 861, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8188, 865, '_wp_page_template', 'elementor_header_footer'),
(8189, 865, '_elementor_edit_mode', 'builder'),
(8190, 865, '_elementor_template_type', 'wp-page'),
(8191, 865, '_elementor_version', '3.35.0'),
(8192, 865, '_elementor_pro_version', '3.35.0'),
(8193, 865, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8164, 862, '_elementor_page_settings', 'a:0:{}'),
(8167, 863, '_wp_page_template', 'elementor_header_footer'),
(8168, 863, '_elementor_edit_mode', 'builder'),
(8169, 863, '_elementor_template_type', 'wp-page'),
(8170, 863, '_elementor_version', '3.35.0'),
(8171, 863, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8172, 863, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8174, 863, '_elementor_page_settings', 'a:0:{}'),
(8177, 864, '_wp_page_template', 'elementor_header_footer'),
(8178, 864, '_elementor_edit_mode', 'builder'),
(8179, 864, '_elementor_template_type', 'wp-page'),
(8180, 864, '_elementor_version', '3.35.0'),
(8181, 864, '_elementor_pro_version', '3.35.0'),
(8182, 864, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8203, 866, '_elementor_page_settings', 'a:0:{}'),
(8204, 867, '_wp_page_template', 'elementor_header_footer'),
(8205, 867, '_elementor_edit_mode', 'builder'),
(8206, 867, '_elementor_template_type', 'wp-page'),
(8207, 867, '_elementor_version', '3.35.0'),
(8208, 867, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8209, 867, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8222, 869, '_wp_page_template', 'elementor_header_footer'),
(8223, 869, '_elementor_edit_mode', 'builder'),
(8224, 869, '_elementor_template_type', 'wp-page'),
(8225, 869, '_elementor_version', '3.35.0'),
(8226, 869, '_elementor_pro_version', '3.35.0'),
(8227, 869, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8270, 874, '_elementor_edit_mode', 'builder'),
(8269, 874, '_wp_page_template', 'elementor_header_footer'),
(8238, 871, '_wp_page_template', 'elementor_header_footer'),
(8239, 871, '_elementor_edit_mode', 'builder'),
(8240, 871, '_elementor_template_type', 'wp-page'),
(8241, 871, '_elementor_version', '3.35.0'),
(8242, 871, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8243, 871, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Family-focused, supportive workplace<\\/li>\\n \\t<li>Meaningful work that impacts lives daily<\\/li>\\n \\t<li>Ongoing training and growth opportunities<\\/li>\\n \\t<li>Stable daytime hours (no overnight shifts)<\\/li>\\n \\t<li>Positive, team-oriented culture<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Adult Day Care Caregivers<\\/li>\\n \\t<li>Activity Coordinators<\\/li>\\n \\t<li>Drivers (Transportation Services)<\\/li>\\n \\t<li>Program Assistants<\\/li>\\n \\t<li>Administrative &amp; Support Staff<\\/li>\\n<\\/ul>\\nExperience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability\\nmatter most.\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Kind, patient, and respectful individuals<\\/li>\\n \\t<li>Strong communication skills<\\/li>\\n \\t<li>Dependability and professionalism<\\/li>\\n \\t<li>Commitment to participant safety and dignity<\\/li>\\n \\t<li>Willingness to learn and grow<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Competitive pay<\\/li>\\n \\t<li>Training and onboarding support<\\/li>\\n \\t<li>Opportunities for advancement<\\/li>\\n \\t<li>Positive work-life balance<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8229, 869, '_elementor_page_settings', 'a:0:{}'),
(8230, 870, '_wp_page_template', 'elementor_header_footer'),
(8231, 870, '_elementor_edit_mode', 'builder'),
(8232, 870, '_elementor_template_type', 'wp-page'),
(8233, 870, '_elementor_version', '3.35.0'),
(8234, 870, '_elementor_pro_version', '3.35.0'),
(8235, 870, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8237, 870, '_elementor_page_settings', 'a:0:{}'),
(8249, 872, '_wp_page_template', 'elementor_header_footer'),
(8250, 872, '_elementor_edit_mode', 'builder'),
(8251, 872, '_elementor_template_type', 'wp-page'),
(8252, 872, '_elementor_version', '3.35.0'),
(8253, 872, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8254, 872, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Family-focused, supportive workplace<\\/li>\\n \\t<li>Meaningful work that impacts lives daily<\\/li>\\n \\t<li>Ongoing training and growth opportunities<\\/li>\\n \\t<li>Stable daytime hours (no overnight shifts)<\\/li>\\n \\t<li>Positive, team-oriented culture<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Adult Day Care Caregivers<\\/li>\\n \\t<li>Activity Coordinators<\\/li>\\n \\t<li>Drivers (Transportation Services)<\\/li>\\n \\t<li>Program Assistants<\\/li>\\n \\t<li>Administrative &amp; Support Staff<\\/li>\\n<\\/ul>\\nExperience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability\\nmatter most.\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Kind, patient, and respectful individuals<\\/li>\\n \\t<li>Strong communication skills<\\/li>\\n \\t<li>Dependability and professionalism<\\/li>\\n \\t<li>Commitment to participant safety and dignity<\\/li>\\n \\t<li>Willingness to learn and grow<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Competitive pay<\\/li>\\n \\t<li>Training and onboarding support<\\/li>\\n \\t<li>Opportunities for advancement<\\/li>\\n \\t<li>Positive work-life balance<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8313, 878, '_wp_page_template', 'elementor_header_footer'),
(8314, 878, '_elementor_edit_mode', 'builder'),
(8315, 878, '_elementor_template_type', 'wp-page'),
(8282, 875, '_wp_page_template', 'elementor_header_footer'),
(8283, 875, '_elementor_edit_mode', 'builder'),
(8284, 875, '_elementor_template_type', 'wp-page'),
(8285, 875, '_elementor_version', '3.35.0'),
(8286, 875, '_elementor_pro_version', '3.35.0'),
(8287, 875, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8320, 878, '_elementor_page_settings', 'a:0:{}'),
(8321, 879, '_wp_page_template', 'elementor_header_footer'),
(8322, 879, '_elementor_edit_mode', 'builder'),
(8323, 879, '_elementor_template_type', 'wp-page'),
(8324, 879, '_elementor_version', '3.35.0'),
(8325, 879, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8326, 879, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8256, 872, '_elementor_page_settings', 'a:0:{}'),
(8259, 873, '_wp_page_template', 'elementor_header_footer'),
(8260, 873, '_elementor_edit_mode', 'builder'),
(8261, 873, '_elementor_template_type', 'wp-page'),
(8262, 873, '_elementor_version', '3.35.0'),
(8263, 873, '_elementor_pro_version', '3.35.0'),
(8264, 873, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Family-focused, supportive workplace<\\/li>\\n \\t<li>Meaningful work that impacts lives daily<\\/li>\\n \\t<li>Ongoing training and growth opportunities<\\/li>\\n \\t<li>Stable daytime hours (no overnight shifts)<\\/li>\\n \\t<li>Positive, team-oriented culture<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Adult Day Care Caregivers<\\/li>\\n \\t<li>Activity Coordinators<\\/li>\\n \\t<li>Drivers (Transportation Services)<\\/li>\\n \\t<li>Program Assistants<\\/li>\\n \\t<li>Administrative &amp; Support Staff<\\/li>\\n<\\/ul>\\nExperience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability\\nmatter most.\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Kind, patient, and respectful individuals<\\/li>\\n \\t<li>Strong communication skills<\\/li>\\n \\t<li>Dependability and professionalism<\\/li>\\n \\t<li>Commitment to participant safety and dignity<\\/li>\\n \\t<li>Willingness to learn and grow<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\">\\n \\t<li>Competitive pay<\\/li>\\n \\t<li>Training and onboarding support<\\/li>\\n \\t<li>Opportunities for advancement<\\/li>\\n \\t<li>Positive work-life balance<\\/li>\\n<\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8266, 873, '_elementor_page_settings', 'a:0:{}'),
(8271, 874, '_elementor_template_type', 'wp-page'),
(8272, 874, '_elementor_version', '3.35.0'),
(8273, 874, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8274, 874, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8316, 878, '_elementor_version', '3.35.0'),
(8317, 878, '_elementor_pro_version', '3.35.0'),
(8318, 878, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8289, 875, '_elementor_page_settings', 'a:0:{}'),
(8292, 876, '_wp_page_template', 'elementor_header_footer'),
(8293, 876, '_elementor_edit_mode', 'builder'),
(8294, 876, '_elementor_template_type', 'wp-page'),
(8295, 876, '_elementor_version', '3.35.0'),
(8296, 876, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8297, 876, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}]},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8299, 876, '_elementor_page_settings', 'a:0:{}'),
(8302, 877, '_wp_page_template', 'elementor_header_footer'),
(8303, 877, '_elementor_edit_mode', 'builder'),
(8304, 877, '_elementor_template_type', 'wp-page'),
(8305, 877, '_elementor_version', '3.35.0'),
(8306, 877, '_elementor_pro_version', '3.35.0'),
(8307, 877, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8328, 879, '_elementor_page_settings', 'a:0:{}'),
(8364, 883, '_wp_page_template', 'elementor_header_footer'),
(8331, 880, '_wp_page_template', 'elementor_header_footer'),
(8332, 880, '_elementor_edit_mode', 'builder'),
(8333, 880, '_elementor_template_type', 'wp-page'),
(8334, 880, '_elementor_version', '3.35.0'),
(8335, 880, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8336, 880, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(11011, 1133, '_wp_page_template', 'elementor_header_footer'),
(10991, 1131, '_wp_page_template', 'elementor_header_footer'),
(10992, 1131, '_elementor_edit_mode', 'builder'),
(10993, 1131, '_elementor_template_type', 'wp-page'),
(10994, 1131, '_elementor_version', '3.35.0'),
(10995, 1131, '_elementor_pro_version', '3.35.0'),
(10996, 1131, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8377, 884, '_wp_page_template', 'elementor_header_footer'),
(8378, 884, '_elementor_edit_mode', 'builder'),
(8379, 884, '_elementor_template_type', 'wp-page'),
(8380, 884, '_elementor_version', '3.35.0'),
(8381, 884, '_elementor_pro_version', '3.35.0'),
(8382, 884, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8547, 902, '_wp_page_template', 'elementor_header_footer'),
(8548, 902, '_elementor_edit_mode', 'builder'),
(8549, 902, '_elementor_template_type', 'wp-page'),
(8550, 902, '_elementor_version', '3.35.0'),
(8551, 902, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8552, 902, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8516, 899, '_wp_page_template', 'elementor_header_footer'),
(8517, 899, '_elementor_edit_mode', 'builder'),
(8518, 899, '_elementor_template_type', 'wp-page'),
(8519, 899, '_elementor_version', '3.35.0'),
(8520, 899, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8521, 899, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8491, 896, '_wp_page_template', 'elementor_header_footer'),
(8492, 896, '_elementor_edit_mode', 'builder'),
(8493, 896, '_elementor_template_type', 'wp-page'),
(8494, 896, '_elementor_version', '3.35.0'),
(8495, 896, '_elementor_pro_version', '3.35.0'),
(8466, 893, '_wp_page_template', 'elementor_header_footer'),
(8467, 893, '_elementor_edit_mode', 'builder'),
(8468, 893, '_elementor_template_type', 'wp-page'),
(8469, 893, '_elementor_version', '3.35.0'),
(8470, 893, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8471, 893, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ba9aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8344, 881, '_wp_page_template', 'elementor_header_footer'),
(8345, 881, '_elementor_edit_mode', 'builder'),
(8346, 881, '_elementor_template_type', 'wp-page'),
(8347, 881, '_elementor_version', '3.35.0'),
(8348, 881, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8349, 881, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8351, 881, '_elementor_page_settings', 'a:0:{}'),
(8354, 882, '_wp_page_template', 'elementor_header_footer'),
(8355, 882, '_elementor_edit_mode', 'builder'),
(8356, 882, '_elementor_template_type', 'wp-page'),
(8357, 882, '_elementor_version', '3.35.0'),
(8358, 882, '_elementor_pro_version', '3.35.0'),
(8359, 882, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1177,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8361, 882, '_elementor_page_settings', 'a:0:{}'),
(8365, 883, '_elementor_edit_mode', 'builder'),
(8366, 883, '_elementor_template_type', 'wp-page'),
(8367, 883, '_elementor_version', '3.35.0'),
(8368, 883, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8369, 883, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8410, 887, '_wp_page_template', 'elementor_header_footer'),
(8411, 887, '_elementor_edit_mode', 'builder'),
(8412, 887, '_elementor_template_type', 'wp-page'),
(8413, 887, '_elementor_version', '3.35.0'),
(8414, 887, '_elementor_pro_version', '3.35.0'),
(8415, 887, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8384, 884, '_elementor_page_settings', 'a:0:{}'),
(8387, 885, '_wp_page_template', 'elementor_header_footer'),
(8388, 885, '_elementor_edit_mode', 'builder'),
(8389, 885, '_elementor_template_type', 'wp-page'),
(8390, 885, '_elementor_version', '3.35.0'),
(8391, 885, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8392, 885, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8394, 885, '_elementor_page_settings', 'a:0:{}'),
(8397, 886, '_wp_page_template', 'elementor_header_footer'),
(8398, 886, '_elementor_edit_mode', 'builder'),
(8399, 886, '_elementor_template_type', 'wp-page'),
(8400, 886, '_elementor_version', '3.35.0'),
(8401, 886, '_elementor_pro_version', '3.35.0'),
(8402, 886, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8450, 891, '_wp_page_template', 'elementor_header_footer'),
(8451, 891, '_elementor_edit_mode', 'builder'),
(8452, 891, '_elementor_template_type', 'wp-page'),
(8453, 891, '_elementor_version', '3.35.0'),
(8454, 891, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8455, 891, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1316,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8417, 887, '_elementor_page_settings', 'a:0:{}'),
(8420, 888, '_wp_page_template', 'elementor_header_footer'),
(8421, 888, '_elementor_edit_mode', 'builder'),
(8422, 888, '_elementor_template_type', 'wp-page'),
(8423, 888, '_elementor_version', '3.35.0'),
(8424, 888, '_elementor_pro_version', '3.35.0'),
(8425, 888, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":748,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"611e8430\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers Application\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf4266\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8427, 888, '_elementor_page_settings', 'a:0:{}'),
(8430, 889, '_wp_page_template', 'elementor_header_footer'),
(8431, 889, '_elementor_edit_mode', 'builder'),
(8432, 889, '_elementor_template_type', 'wp-page'),
(8433, 889, '_elementor_version', '3.35.0'),
(8434, 889, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8435, 889, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1316,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8583, 906, '_wp_page_template', 'elementor_header_footer'),
(8457, 891, '_elementor_page_settings', 'a:0:{}'),
(8458, 892, '_wp_page_template', 'elementor_header_footer'),
(8459, 892, '_elementor_edit_mode', 'builder'),
(8460, 892, '_elementor_template_type', 'wp-page'),
(8461, 892, '_elementor_version', '3.35.0'),
(8462, 892, '_elementor_pro_version', '3.35.0'),
(8463, 892, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1316,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8465, 892, '_elementor_page_settings', 'a:0:{}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8496, 896, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8475, 894, '_wp_page_template', 'elementor_header_footer'),
(8476, 894, '_elementor_edit_mode', 'builder'),
(8477, 894, '_elementor_template_type', 'wp-page'),
(8478, 894, '_elementor_version', '3.35.0'),
(8479, 894, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8480, 894, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ba9aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8482, 894, '_elementor_page_settings', 'a:0:{}'),
(8483, 895, '_wp_page_template', 'elementor_header_footer'),
(8484, 895, '_elementor_edit_mode', 'builder'),
(8485, 895, '_elementor_template_type', 'wp-page'),
(8486, 895, '_elementor_version', '3.35.0'),
(8487, 895, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8488, 895, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5ba9aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8490, 895, '_elementor_page_settings', 'a:0:{}'),
(8500, 897, '_wp_page_template', 'elementor_header_footer'),
(8501, 897, '_elementor_edit_mode', 'builder'),
(8502, 897, '_elementor_template_type', 'wp-page'),
(8503, 897, '_elementor_version', '3.35.0'),
(8504, 897, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8505, 897, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8507, 897, '_elementor_page_settings', 'a:0:{}'),
(8508, 898, '_wp_page_template', 'elementor_header_footer'),
(8509, 898, '_elementor_edit_mode', 'builder'),
(8510, 898, '_elementor_template_type', 'wp-page'),
(8511, 898, '_elementor_version', '3.35.0'),
(8512, 898, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8513, 898, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1359,\"sizes\":[]}},\"elements\":[{\"id\":\"6fb8f1f4\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"ce053e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h4\",\"pp_display_conditions\":[{\"_id\":\"dc122ca\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b05bd8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:22\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8515, 898, '_elementor_page_settings', 'a:0:{}'),
(8527, 900, '_wp_page_template', 'elementor_header_footer'),
(8528, 900, '_elementor_edit_mode', 'builder'),
(8529, 900, '_elementor_template_type', 'wp-page'),
(8530, 900, '_elementor_version', '3.35.0'),
(8531, 900, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8532, 900, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8584, 906, '_elementor_edit_mode', 'builder'),
(8567, 904, '_wp_page_template', 'elementor_header_footer'),
(8568, 904, '_elementor_edit_mode', 'builder'),
(8569, 904, '_elementor_template_type', 'wp-page'),
(8570, 904, '_elementor_version', '3.35.0'),
(8571, 904, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8572, 904, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8594, 907, '_wp_page_template', 'elementor_header_footer'),
(8595, 907, '_elementor_edit_mode', 'builder'),
(8596, 907, '_elementor_template_type', 'wp-page'),
(8597, 907, '_elementor_version', '3.35.0'),
(8598, 907, '_elementor_pro_version', '3.35.0'),
(8599, 907, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8534, 900, '_elementor_page_settings', 'a:0:{}'),
(8537, 901, '_wp_page_template', 'elementor_header_footer'),
(8538, 901, '_elementor_edit_mode', 'builder'),
(8539, 901, '_elementor_template_type', 'wp-page'),
(8540, 901, '_elementor_version', '3.35.0'),
(8541, 901, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8542, 901, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7e2fc5e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"button_type\":\"\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"size\":\"sm\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_align\":\"row\",\"icon_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_css_id\":\"\",\"align_widescreen\":\"\",\"align_tablet_extra\":\"\",\"align_tablet\":\"\",\"align_mobile_extra\":\"\",\"align_mobile\":\"\",\"content_align\":\"\",\"content_align_widescreen\":\"\",\"content_align_tablet_extra\":\"\",\"content_align_tablet\":\"\",\"content_align_mobile_extra\":\"\",\"content_align_mobile\":\"\",\"typography_typography\":\"\",\"typography_font_family\":\"\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"\",\"typography_text_transform\":\"\",\"typography_font_style\":\"\",\"typography_text_decoration\":\"\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"button_text_color\":\"\",\"background_background\":\"classic\",\"background_color\":\"\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_stop_widescreen\":{\"unit\":\"%\"},\"background_color_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_stop_tablet\":{\"unit\":\"%\"},\"background_color_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_stop_mobile\":{\"unit\":\"%\"},\"background_color_b\":\"#f2295b\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_color_b_stop_widescreen\":{\"unit\":\"%\"},\"background_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"background_color_b_stop_tablet\":{\"unit\":\"%\"},\"background_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"background_color_b_stop_mobile\":{\"unit\":\"%\"},\"background_gradient_type\":\"linear\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_tablet\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"background_gradient_angle_mobile\":{\"unit\":\"deg\"},\"background_gradient_position\":\"center center\",\"background_gradient_position_widescreen\":\"\",\"background_gradient_position_tablet_extra\":\"\",\"background_gradient_position_tablet\":\"\",\"background_gradient_position_mobile_extra\":\"\",\"background_gradient_position_mobile\":\"\",\"background_position\":\"\",\"background_position_widescreen\":\"\",\"background_position_tablet_extra\":\"\",\"background_position_tablet\":\"\",\"background_position_mobile_extra\":\"\",\"background_position_mobile\":\"\",\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_attachment\":\"\",\"background_repeat\":\"\",\"background_repeat_widescreen\":\"\",\"background_repeat_tablet_extra\":\"\",\"background_repeat_tablet\":\"\",\"background_repeat_mobile_extra\":\"\",\"background_repeat_mobile\":\"\",\"background_size\":\"\",\"background_size_widescreen\":\"\",\"background_size_tablet_extra\":\"\",\"background_size_tablet\":\"\",\"background_size_mobile_extra\":\"\",\"background_size_mobile\":\"\",\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_video_link\":\"\",\"background_video_start\":\"\",\"background_video_end\":\"\",\"background_play_once\":\"\",\"background_play_on_mobile\":\"\",\"background_privacy_mode\":\"\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_slideshow_loop\":\"yes\",\"background_slideshow_slide_duration\":5000,\"background_slideshow_slide_transition\":\"fade\",\"background_slideshow_transition_duration\":500,\"background_slideshow_background_size\":\"\",\"background_slideshow_background_size_widescreen\":\"\",\"background_slideshow_background_size_tablet_extra\":\"\",\"background_slideshow_background_size_tablet\":\"\",\"background_slideshow_background_size_mobile_extra\":\"\",\"background_slideshow_background_size_mobile\":\"\",\"background_slideshow_background_position\":\"\",\"background_slideshow_background_position_widescreen\":\"\",\"background_slideshow_background_position_tablet_extra\":\"\",\"background_slideshow_background_position_tablet\":\"\",\"background_slideshow_background_position_mobile_extra\":\"\",\"background_slideshow_background_position_mobile\":\"\",\"background_slideshow_lazyload\":\"\",\"background_slideshow_ken_burns\":\"\",\"background_slideshow_ken_burns_zoom_direction\":\"in\",\"button_box_shadow_box_shadow_type\":\"\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_box_shadow_box_shadow_position\":\" \",\"hover_color\":\"\",\"button_background_hover_background\":\"classic\",\"button_background_hover_color\":\"\",\"button_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"button_background_hover_color_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_color_b\":\"#f2295b\",\"button_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_color_b_stop_widescreen\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_tablet\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile_extra\":{\"unit\":\"%\"},\"button_background_hover_color_b_stop_mobile\":{\"unit\":\"%\"},\"button_background_hover_gradient_type\":\"linear\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"button_background_hover_gradient_angle_widescreen\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile_extra\":{\"unit\":\"deg\"},\"button_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\"},\"button_background_hover_gradient_position\":\"center center\",\"button_background_hover_gradient_position_widescreen\":\"\",\"button_background_hover_gradient_position_tablet_extra\":\"\",\"button_background_hover_gradient_position_tablet\":\"\",\"button_background_hover_gradient_position_mobile_extra\":\"\",\"button_background_hover_gradient_position_mobile\":\"\",\"button_background_hover_position\":\"\",\"button_background_hover_position_widescreen\":\"\",\"button_background_hover_position_tablet_extra\":\"\",\"button_background_hover_position_tablet\":\"\",\"button_background_hover_position_mobile_extra\":\"\",\"button_background_hover_position_mobile\":\"\",\"button_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_xpos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_ypos_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"button_background_hover_attachment\":\"\",\"button_background_hover_repeat\":\"\",\"button_background_hover_repeat_widescreen\":\"\",\"button_background_hover_repeat_tablet_extra\":\"\",\"button_background_hover_repeat_tablet\":\"\",\"button_background_hover_repeat_mobile_extra\":\"\",\"button_background_hover_repeat_mobile\":\"\",\"button_background_hover_size\":\"\",\"button_background_hover_size_widescreen\":\"\",\"button_background_hover_size_tablet_extra\":\"\",\"button_background_hover_size_tablet\":\"\",\"button_background_hover_size_mobile_extra\":\"\",\"button_background_hover_size_mobile\":\"\",\"button_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"button_background_hover_bg_width_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_video_link\":\"\",\"button_background_hover_video_start\":\"\",\"button_background_hover_video_end\":\"\",\"button_background_hover_play_once\":\"\",\"button_background_hover_play_on_mobile\":\"\",\"button_background_hover_privacy_mode\":\"\",\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"button_background_hover_slideshow_loop\":\"yes\",\"button_background_hover_slideshow_slide_duration\":5000,\"button_background_hover_slideshow_slide_transition\":\"fade\",\"button_background_hover_slideshow_transition_duration\":500,\"button_background_hover_slideshow_background_size\":\"\",\"button_background_hover_slideshow_background_size_widescreen\":\"\",\"button_background_hover_slideshow_background_size_tablet_extra\":\"\",\"button_background_hover_slideshow_background_size_tablet\":\"\",\"button_background_hover_slideshow_background_size_mobile_extra\":\"\",\"button_background_hover_slideshow_background_size_mobile\":\"\",\"button_background_hover_slideshow_background_position\":\"\",\"button_background_hover_slideshow_background_position_widescreen\":\"\",\"button_background_hover_slideshow_background_position_tablet_extra\":\"\",\"button_background_hover_slideshow_background_position_tablet\":\"\",\"button_background_hover_slideshow_background_position_mobile_extra\":\"\",\"button_background_hover_slideshow_background_position_mobile\":\"\",\"button_background_hover_slideshow_lazyload\":\"\",\"button_background_hover_slideshow_ken_burns\":\"\",\"button_background_hover_slideshow_ken_burns_zoom_direction\":\"in\",\"button_hover_border_color\":\"\",\"button_hover_box_shadow_box_shadow_type\":\"\",\"button_hover_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"button_hover_box_shadow_box_shadow_position\":\" \",\"button_hover_transition_duration\":{\"unit\":\"s\",\"size\":\"\",\"sizes\":[]},\"hover_animation\":\"\",\"border_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_color\":\"\",\"border_radius\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_widescreen\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8544, 901, '_elementor_page_settings', 'a:0:{}'),
(8585, 906, '_elementor_template_type', 'wp-page'),
(8586, 906, '_elementor_version', '3.35.0'),
(8587, 906, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8588, 906, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8574, 904, '_elementor_page_settings', 'a:0:{}'),
(8575, 905, '_wp_page_template', 'elementor_header_footer'),
(8576, 905, '_elementor_edit_mode', 'builder'),
(8577, 905, '_elementor_template_type', 'wp-page'),
(8578, 905, '_elementor_version', '3.35.0'),
(8579, 905, '_elementor_pro_version', '3.35.0'),
(8580, 905, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Careers Application\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position Applying\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_77a0bec\",\"field_type\":\"upload\",\"required\":\"true\",\"field_label\":\"File Upload\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (PRN \\/ Part-Time)\",\"_id\":\"77a0bec\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Careers Application - Oasis\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8582, 905, '_elementor_page_settings', 'a:0:{}'),
(8625, 910, '_wp_page_template', 'elementor_header_footer'),
(8626, 910, '_elementor_edit_mode', 'builder'),
(8627, 910, '_elementor_template_type', 'wp-page'),
(8628, 910, '_elementor_version', '3.35.0'),
(8629, 910, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8630, 910, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8632, 910, '_elementor_page_settings', 'a:0:{}'),
(8633, 911, '_wp_page_template', 'elementor_header_footer'),
(8634, 911, '_elementor_edit_mode', 'builder'),
(8635, 911, '_elementor_template_type', 'wp-page'),
(8636, 911, '_elementor_version', '3.35.0'),
(8637, 911, '_elementor_pro_version', '3.35.0'),
(8638, 911, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8601, 907, '_elementor_page_settings', 'a:0:{}'),
(8604, 908, '_wp_page_template', 'elementor_header_footer'),
(8605, 908, '_elementor_edit_mode', 'builder'),
(8606, 908, '_elementor_template_type', 'wp-page'),
(8607, 908, '_elementor_version', '3.35.0'),
(8608, 908, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8609, 908, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}]},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}]},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}]},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}]},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8611, 908, '_elementor_page_settings', 'a:0:{}'),
(8641, 912, '_wp_page_template', 'elementor_header_footer'),
(8614, 909, '_wp_page_template', 'elementor_header_footer'),
(8615, 909, '_elementor_edit_mode', 'builder'),
(8616, 909, '_elementor_template_type', 'wp-page'),
(8617, 909, '_elementor_version', '3.35.0'),
(8618, 909, '_elementor_pro_version', '3.35.0'),
(8619, 909, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"background_color\":\"#F7F7F7\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8640, 911, '_elementor_page_settings', 'a:0:{}'),
(8642, 912, '_elementor_edit_mode', 'builder'),
(8643, 912, '_elementor_template_type', 'wp-page'),
(8644, 912, '_elementor_version', '3.35.0'),
(8645, 912, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8646, 912, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8650, 913, '_wp_page_template', 'elementor_header_footer'),
(8651, 913, '_elementor_edit_mode', 'builder'),
(8652, 913, '_elementor_template_type', 'wp-page'),
(8653, 913, '_elementor_version', '3.35.0'),
(8654, 913, '_elementor_pro_version', '3.35.0'),
(8655, 913, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8657, 913, '_elementor_page_settings', 'a:0:{}'),
(8658, 914, '_wp_page_template', 'elementor_header_footer'),
(8659, 914, '_elementor_edit_mode', 'builder'),
(8660, 914, '_elementor_template_type', 'wp-page'),
(8661, 914, '_elementor_version', '3.35.0'),
(8662, 914, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8663, 914, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8665, 914, '_elementor_page_settings', 'a:0:{}'),
(8666, 915, '_wp_page_template', 'elementor_header_footer'),
(8667, 915, '_elementor_edit_mode', 'builder'),
(8668, 915, '_elementor_template_type', 'wp-page'),
(8669, 915, '_elementor_version', '3.35.0'),
(8670, 915, '_elementor_pro_version', '3.35.0'),
(8671, 915, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10228, 1066, '_wp_page_template', 'elementor_header_footer'),
(10208, 1064, '_wp_page_template', 'elementor_header_footer'),
(10209, 1064, '_elementor_edit_mode', 'builder'),
(10210, 1064, '_elementor_template_type', 'wp-page'),
(10211, 1064, '_elementor_version', '3.35.0'),
(10212, 1064, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10213, 1064, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8681, 916, '_elementor_page_settings', 'a:0:{}'),
(8685, 917, '_wp_page_template', 'elementor_header_footer'),
(8686, 917, '_elementor_edit_mode', 'builder'),
(8687, 917, '_elementor_template_type', 'wp-page'),
(8688, 917, '_elementor_version', '3.35.0'),
(8689, 917, '_elementor_pro_version', '3.35.0'),
(8690, 917, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8691, 917, '_elementor_page_settings', 'a:0:{}'),
(8696, 918, '_elementor_edit_mode', 'builder'),
(8697, 918, '_elementor_template_type', 'wp-page'),
(8698, 918, '_elementor_version', '3.35.0'),
(8699, 918, '_elementor_pro_version', '3.35.0'),
(8700, 918, '_elementor_data', '[{\"id\":\"5a4396cf\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"2dd796e3\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"52fb4edb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch With Us\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"664018a0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact Us\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Contact Us -  Oasis Health Care Community\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8715, 919, '_elementor_page_settings', 'a:0:{}'),
(8718, 920, '_wp_page_template', 'elementor_header_footer'),
(8719, 920, '_elementor_edit_mode', 'builder'),
(8720, 920, '_elementor_template_type', 'wp-page'),
(8721, 920, '_elementor_version', '3.35.0'),
(8722, 920, '_elementor_pro_version', '3.35.0'),
(8723, 920, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Adult Day Services \\n Home Care Services  \\nTransportation (non-medical) \",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment - Oasis\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8725, 920, '_elementor_page_settings', 'a:0:{}'),
(8729, 921, '_elementor_edit_mode', 'builder'),
(8730, 921, '_elementor_template_type', 'wp-page'),
(8731, 921, '_elementor_version', '3.35.0'),
(8732, 921, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8733, 921, '_elementor_data', '[{\"id\":\"84e9822\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de25781\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b45048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Schedule Your Appointment\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9de58e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Schedule Your Appointment\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_2cdade7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Type of Service\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Adult Day Services \\n Home Care Services  \\nTransportation (non-medical) \",\"_id\":\"2cdade7\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"arifwebsols@gmail.com\",\"email_subject\":\"Schedule Your Appointment -  Oasis Health Care Community\",\"email_from\":\"norelpy@mrarif.me\",\"email_from_name\":\"Oasis\",\"form_metadata\":[\"date\",\"time\",\"remote_ip\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(8786, 926, '_wp_page_template', 'elementor_header_footer'),
(8787, 926, '_elementor_edit_mode', 'builder'),
(8788, 926, '_elementor_template_type', 'wp-page'),
(8789, 926, '_elementor_version', '3.35.0'),
(8790, 926, '_elementor_pro_version', '3.35.0'),
(8791, 926, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8750, 922, '_elementor_page_settings', 'a:0:{}'),
(8754, 923, '_wp_page_template', 'elementor_header_footer'),
(8755, 923, '_elementor_edit_mode', 'builder'),
(8756, 923, '_elementor_template_type', 'wp-page'),
(8757, 923, '_elementor_version', '3.35.0'),
(8758, 923, '_elementor_pro_version', '3.35.0'),
(8759, 923, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Transportation\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.<\\/p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8760, 923, '_elementor_page_settings', 'a:0:{}'),
(8769, 924, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8827, 931, '_wp_page_template', 'elementor_header_footer'),
(8828, 931, '_elementor_edit_mode', 'builder'),
(8829, 931, '_elementor_template_type', 'wp-page'),
(8830, 931, '_elementor_version', '3.35.0'),
(8831, 931, '_elementor_pro_version', '3.35.0'),
(8832, 931, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8802, 928, '_wp_page_template', 'elementor_header_footer'),
(8803, 928, '_elementor_edit_mode', 'builder'),
(8804, 928, '_elementor_template_type', 'wp-page'),
(8805, 928, '_elementor_version', '3.35.0'),
(8806, 928, '_elementor_pro_version', '3.35.0'),
(8807, 928, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"view\":\"traditional\",\"link_click\":\"full_width\",\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8793, 926, '_elementor_page_settings', 'a:0:{}'),
(8794, 927, '_wp_page_template', 'elementor_header_footer'),
(8795, 927, '_elementor_edit_mode', 'builder'),
(8796, 927, '_elementor_template_type', 'wp-page'),
(8797, 927, '_elementor_version', '3.35.0'),
(8798, 927, '_elementor_pro_version', '3.35.0'),
(8799, 927, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8801, 927, '_elementor_page_settings', 'a:0:{}'),
(8811, 929, '_wp_page_template', 'elementor_header_footer'),
(8812, 929, '_elementor_edit_mode', 'builder'),
(8813, 929, '_elementor_template_type', 'wp-page'),
(8814, 929, '_elementor_version', '3.35.0'),
(8815, 929, '_elementor_pro_version', '3.35.0'),
(8816, 929, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"view\":\"traditional\",\"link_click\":\"full_width\",\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8818, 929, '_elementor_page_settings', 'a:0:{}'),
(8819, 930, '_wp_page_template', 'elementor_header_footer'),
(8820, 930, '_elementor_edit_mode', 'builder'),
(8821, 930, '_elementor_template_type', 'wp-page'),
(8822, 930, '_elementor_version', '3.35.0'),
(8823, 930, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8824, 930, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"view\":\"traditional\",\"link_click\":\"full_width\",\"space_between_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_between_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_align\":\"\",\"icon_align_widescreen\":\"\",\"icon_align_tablet_extra\":\"\",\"icon_align_tablet\":\"\",\"icon_align_mobile_extra\":\"\",\"icon_align_mobile\":\"\",\"divider\":\"\",\"divider_style\":\"solid\",\"divider_weight\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"divider_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_height\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"divider_color\":\"#ddd\",\"icon_color\":\"\",\"icon_color_hover\":\"\",\"icon_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_self_align\":\"\",\"icon_self_align_widescreen\":\"\",\"icon_self_align_tablet_extra\":\"\",\"icon_self_align_tablet\":\"\",\"icon_self_align_mobile_extra\":\"\",\"icon_self_align_mobile\":\"\",\"icon_self_vertical_align_widescreen\":\"\",\"icon_self_vertical_align_tablet_extra\":\"\",\"icon_self_vertical_align_tablet\":\"\",\"icon_self_vertical_align_mobile_extra\":\"\",\"icon_self_vertical_align_mobile\":\"\",\"icon_vertical_offset_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_vertical_offset_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_typography\":\"\",\"icon_typography_font_family\":\"\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_font_weight\":\"\",\"icon_typography_text_transform\":\"\",\"icon_typography_font_style\":\"\",\"icon_typography_text_decoration\":\"\",\"icon_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_widescreen\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile_extra\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_typography_word_spacing_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"text_shadow_text_shadow_type\":\"\",\"text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"text_color\":\"\",\"text_color_hover\":\"\",\"text_color_hover_transition\":{\"unit\":\"s\",\"size\":0.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8826, 930, '_elementor_page_settings', 'a:0:{}'),
(8917, 939, '_wp_page_template', 'elementor_header_footer'),
(8918, 939, '_elementor_edit_mode', 'builder'),
(8919, 939, '_elementor_template_type', 'wp-page'),
(8920, 939, '_elementor_version', '3.35.0'),
(8921, 939, '_elementor_pro_version', '3.35.0'),
(8922, 939, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(11175, 1148, '_wp_page_template', 'elementor_header_footer'),
(11155, 1146, '_wp_page_template', 'elementor_header_footer'),
(11156, 1146, '_elementor_edit_mode', 'builder'),
(11157, 1146, '_elementor_template_type', 'wp-page'),
(11158, 1146, '_elementor_version', '3.35.0'),
(11159, 1146, '_elementor_pro_version', '3.35.0'),
(11160, 1146, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8948, 942, '_wp_page_template', 'elementor_header_footer'),
(8949, 942, '_elementor_edit_mode', 'builder'),
(8950, 942, '_elementor_template_type', 'wp-page'),
(8951, 942, '_elementor_version', '3.35.0'),
(8952, 942, '_elementor_pro_version', '3.35.0'),
(8953, 942, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8955, 942, '_elementor_page_settings', 'a:0:{}'),
(8956, 943, '_wp_page_template', 'elementor_header_footer'),
(8957, 943, '_elementor_edit_mode', 'builder'),
(8958, 943, '_elementor_template_type', 'wp-page'),
(8959, 943, '_elementor_version', '3.35.0'),
(8960, 943, '_elementor_pro_version', '3.35.0'),
(8961, 943, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8874, 935, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8875, 935, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8871, 935, '_elementor_edit_mode', 'builder'),
(8872, 935, '_elementor_template_type', 'wp-page'),
(8873, 935, '_elementor_version', '3.35.0'),
(8867, 934, '_elementor_page_settings', 'a:0:{}'),
(8858, 933, '_elementor_page_settings', 'a:0:{}'),
(11108, 1142, '_elementor_edit_mode', 'builder'),
(11109, 1142, '_elementor_template_type', 'wp-page'),
(11110, 1142, '_elementor_version', '3.35.5'),
(11111, 1142, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11112, 1142, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8861, 934, '_wp_page_template', 'elementor_header_footer'),
(8862, 934, '_elementor_edit_mode', 'builder'),
(8863, 934, '_elementor_template_type', 'wp-page'),
(8864, 934, '_elementor_version', '3.35.0'),
(8865, 934, '_elementor_pro_version', '3.35.0'),
(8866, 934, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Oasis provides safe and reliable transportation services to support residents\\u2019 independence and continuity of care. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10241, 1067, '_wp_page_template', 'elementor_header_footer'),
(10242, 1067, '_elementor_edit_mode', 'builder'),
(10243, 1067, '_elementor_template_type', 'wp-page'),
(10244, 1067, '_elementor_version', '3.35.0'),
(10245, 1067, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10246, 1067, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(9500, 996, '_wp_page_template', 'elementor_header_footer'),
(9501, 996, '_elementor_edit_mode', 'builder'),
(9502, 996, '_elementor_template_type', 'wp-page'),
(9503, 996, '_elementor_version', '3.35.0'),
(9504, 996, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9505, 996, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9537, 999, '_elementor_page_settings', 'a:0:{}'),
(9541, 1000, '_wp_page_template', 'elementor_header_footer'),
(9542, 1000, '_elementor_edit_mode', 'builder'),
(9543, 1000, '_elementor_template_type', 'wp-page'),
(9544, 1000, '_elementor_version', '3.35.0'),
(9545, 1000, '_elementor_pro_version', '3.35.0'),
(9546, 1000, '_elementor_data', '[{\"id\":\"ec53c40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"5e394a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"2946f46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e871fc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f495119\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc173cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9547, 1000, '_elementor_page_settings', 'a:0:{}'),
(9552, 1001, '_elementor_edit_mode', 'builder'),
(9553, 1001, '_elementor_template_type', 'wp-page'),
(9554, 1001, '_elementor_version', '3.35.0'),
(9555, 1001, '_elementor_pro_version', '3.35.0'),
(9556, 1001, '_elementor_data', '[{\"id\":\"ec53c40\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"5e394a3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"2946f46\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"e871fc6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f495119\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nursing, Dietary Counseling\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bc173cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.<\\/p><p>Dietary counseling is tailored to each individual\\u2019s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(8891, 936, '_elementor_page_settings', 'a:0:{}'),
(8894, 937, '_wp_page_template', 'elementor_header_footer'),
(8895, 937, '_elementor_edit_mode', 'builder'),
(8896, 937, '_elementor_template_type', 'wp-page'),
(8897, 937, '_elementor_version', '3.35.0'),
(8898, 937, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8899, 937, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8901, 937, '_elementor_page_settings', 'a:0:{}'),
(8905, 938, '_elementor_edit_mode', 'builder'),
(8906, 938, '_elementor_template_type', 'wp-page'),
(8907, 938, '_elementor_version', '3.35.0'),
(8908, 938, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8909, 938, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9611, 1008, '_wp_page_template', 'elementor_header_footer'),
(9595, 1006, '_wp_page_template', 'elementor_header_footer'),
(9596, 1006, '_elementor_edit_mode', 'builder'),
(9597, 1006, '_elementor_template_type', 'wp-page'),
(9598, 1006, '_elementor_version', '3.35.0'),
(9599, 1006, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9600, 1006, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(8924, 939, '_elementor_page_settings', 'a:0:{}'),
(8927, 940, '_wp_page_template', 'elementor_header_footer'),
(8928, 940, '_elementor_edit_mode', 'builder'),
(8929, 940, '_elementor_template_type', 'wp-page'),
(8930, 940, '_elementor_version', '3.35.0'),
(8931, 940, '_elementor_pro_version', '3.35.0'),
(8932, 940, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(8934, 940, '_elementor_page_settings', 'a:0:{}'),
(8937, 941, '_wp_page_template', 'elementor_header_footer'),
(8938, 941, '_elementor_edit_mode', 'builder'),
(8939, 941, '_elementor_template_type', 'wp-page'),
(8940, 941, '_elementor_version', '3.35.0'),
(8941, 941, '_elementor_pro_version', '3.35.0'),
(8942, 941, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8963, 943, '_elementor_page_settings', 'a:0:{}'),
(8964, 944, '_wp_page_template', 'elementor_header_footer'),
(8965, 944, '_elementor_edit_mode', 'builder'),
(8966, 944, '_elementor_template_type', 'wp-page'),
(8967, 944, '_elementor_version', '3.35.0'),
(8968, 944, '_elementor_pro_version', '3.35.0'),
(8969, 944, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"con\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8973, 945, '_wp_page_template', 'elementor_header_footer'),
(8974, 945, '_elementor_edit_mode', 'builder'),
(8975, 945, '_elementor_template_type', 'wp-page'),
(8976, 945, '_elementor_version', '3.35.0'),
(8977, 945, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(8978, 945, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"con\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8980, 945, '_elementor_page_settings', 'a:0:{}'),
(8981, 946, '_wp_page_template', 'elementor_header_footer'),
(8982, 946, '_elementor_edit_mode', 'builder'),
(8983, 946, '_elementor_template_type', 'wp-page'),
(8984, 946, '_elementor_version', '3.35.0'),
(8985, 946, '_elementor_pro_version', '3.35.0'),
(8986, 946, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"con\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(8988, 946, '_elementor_page_settings', 'a:0:{}'),
(8989, 947, '_wp_page_template', 'elementor_header_footer'),
(8990, 947, '_elementor_edit_mode', 'builder'),
(8991, 947, '_elementor_template_type', 'wp-page'),
(8992, 947, '_elementor_version', '3.35.0'),
(8993, 947, '_elementor_pro_version', '3.35.0'),
(8994, 947, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10076, 1050, '_wp_page_template', 'elementor_header_footer'),
(10056, 1048, '_wp_page_template', 'elementor_header_footer'),
(10057, 1048, '_elementor_edit_mode', 'builder'),
(10058, 1048, '_elementor_template_type', 'wp-page'),
(10059, 1048, '_elementor_version', '3.35.0'),
(10060, 1048, '_elementor_pro_version', '3.35.0'),
(10061, 1048, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10748, 1114, '_wp_page_template', 'elementor_header_footer'),
(10728, 1112, '_wp_page_template', 'elementor_header_footer'),
(10729, 1112, '_elementor_edit_mode', 'builder'),
(10730, 1112, '_elementor_template_type', 'wp-page'),
(10731, 1112, '_elementor_version', '3.35.0'),
(10732, 1112, '_elementor_pro_version', '3.35.0'),
(10733, 1112, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-ah.jpg\",\"id\":1047,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9022, 949, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9046, 951, '_elementor_source', 'post'),
(9047, 951, '_elementor_edit_mode', 'builder'),
(9048, 951, '_elementor_template_type', 'footer'),
(9031, 950, '_elementor_source', 'post'),
(9032, 950, '_elementor_edit_mode', 'builder'),
(9033, 950, '_elementor_template_type', 'footer'),
(9034, 950, '_elementor_version', '3.35.0'),
(9035, 950, '_elementor_pro_version', '3.35.0'),
(9036, 950, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9037, 950, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9015, 949, '_elementor_source', 'post'),
(9016, 949, '_elementor_edit_mode', 'builder'),
(9017, 949, '_elementor_template_type', 'footer'),
(9018, 949, '_elementor_version', '3.35.0'),
(9019, 949, '_elementor_pro_version', '3.35.0'),
(9020, 949, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9021, 949, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4d16ee8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"713b299\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"ddd73c3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"498ceb2b\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9025, 949, '_elementor_screenshot_failed', '2026-02-09 09:28:27'),
(9049, 951, '_elementor_version', '3.35.0'),
(9050, 951, '_elementor_pro_version', '3.35.0'),
(9051, 951, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9052, 951, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9066, 952, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9072, 953, '_elementor_source', 'post'),
(9073, 953, '_elementor_edit_mode', 'builder'),
(9074, 953, '_elementor_template_type', 'footer'),
(9075, 953, '_elementor_version', '3.35.0'),
(9076, 953, '_elementor_pro_version', '3.35.0'),
(9077, 953, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9078, 953, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"tel:XX-XXX-XXX-XXX-XX\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9038, 950, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9059, 952, '_elementor_source', 'post'),
(9053, 951, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10428, 1082, '_elementor_template_type', 'footer'),
(9087, 954, '_elementor_source', 'post'),
(9088, 954, '_elementor_edit_mode', 'builder'),
(9089, 954, '_elementor_template_type', 'footer'),
(9090, 954, '_elementor_version', '3.35.0'),
(9091, 954, '_elementor_pro_version', '3.35.0'),
(9092, 954, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9093, 954, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9107, 955, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9403, 984, '_elementor_template_type', 'footer'),
(9404, 984, '_elementor_version', '3.35.0'),
(9405, 984, '_elementor_pro_version', '3.35.0'),
(9406, 984, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9407, 984, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9079, 953, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10426, 1082, '_elementor_source', 'post'),
(10427, 1082, '_elementor_edit_mode', 'builder'),
(9401, 984, '_elementor_source', 'post'),
(9402, 984, '_elementor_edit_mode', 'builder'),
(9100, 955, '_elementor_source', 'post'),
(9101, 955, '_elementor_edit_mode', 'builder'),
(9102, 955, '_elementor_template_type', 'footer'),
(9103, 955, '_elementor_version', '3.35.0'),
(9104, 955, '_elementor_pro_version', '3.35.0'),
(9105, 955, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9106, 955, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9094, 954, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10808, 1117, '_elementor_page_settings', 'a:0:{}'),
(11020, 20, '_elementor_page_settings', 'a:0:{}'),
(11021, 20, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10811, 1118, '_wp_page_template', 'elementor_header_footer'),
(10812, 1118, '_elementor_edit_mode', 'builder'),
(10813, 1118, '_elementor_template_type', 'wp-page'),
(10814, 1118, '_elementor_version', '3.35.0'),
(10815, 1118, '_elementor_pro_version', '3.35.0'),
(10816, 1118, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10817, 1118, '_elementor_page_settings', 'a:0:{}'),
(10997, 1131, '_elementor_page_settings', 'a:0:{}'),
(11001, 1132, '_wp_page_template', 'elementor_header_footer'),
(11002, 1132, '_elementor_edit_mode', 'builder'),
(11003, 1132, '_elementor_template_type', 'wp-page'),
(11004, 1132, '_elementor_version', '3.35.0'),
(11005, 1132, '_elementor_pro_version', '3.35.0'),
(11006, 1132, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11007, 1132, '_elementor_page_settings', 'a:0:{}'),
(11012, 1133, '_elementor_edit_mode', 'builder'),
(11013, 1133, '_elementor_template_type', 'wp-page'),
(11014, 1133, '_elementor_version', '3.35.0'),
(11015, 1133, '_elementor_pro_version', '3.35.0'),
(11016, 1133, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10190, 1062, '_elementor_source', 'post'),
(10191, 1062, '_elementor_edit_mode', 'builder'),
(10192, 1062, '_elementor_template_type', 'footer'),
(10193, 1062, '_elementor_version', '3.35.0'),
(10194, 1062, '_elementor_pro_version', '3.35.0'),
(10195, 1062, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10196, 1062, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9120, 956, '_elementor_page_settings', 'a:0:{}'),
(9123, 957, '_wp_page_template', 'elementor_header_footer'),
(10933, 1125, '_elementor_edit_mode', 'builder'),
(10934, 1125, '_elementor_template_type', 'wp-page'),
(9125, 957, '_elementor_edit_mode', 'builder'),
(9126, 957, '_elementor_template_type', 'wp-page'),
(9127, 957, '_elementor_version', '3.35.0'),
(9128, 957, '_elementor_pro_version', '3.35.0'),
(9129, 957, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9130, 957, '_elementor_page_settings', 'a:0:{}'),
(9133, 958, '_wp_page_template', 'elementor_header_footer'),
(10935, 1125, '_elementor_version', '3.35.0'),
(10936, 1125, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10937, 1125, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9135, 958, '_elementor_edit_mode', 'builder'),
(9136, 958, '_elementor_template_type', 'wp-page'),
(9137, 958, '_elementor_version', '3.35.0'),
(9138, 958, '_elementor_pro_version', '3.35.0'),
(9139, 958, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9178, 693, '_elementor_page_settings', 'a:0:{}'),
(9179, 693, '_elementor_controls_usage', 'a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:3:{s:13:\"content_width\";i:8;s:20:\"flex_justify_content\";i:4;s:14:\"flex_direction\";i:4;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:10;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:10;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:4;s:4:\"view\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:4;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:3;s:20:\"icon_vertical_offset\";i:3;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9147, 959, '_wp_attached_file', '2026/02/Oasis-Home-Care-aa.jpg'),
(9148, 959, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:30:\"2026/02/Oasis-Home-Care-aa.jpg\";s:8:\"filesize\";i:71333;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-aa-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15332;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-aa-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6884;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Oasis-Home-Care-aa-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67830;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9156, 960, '_elementor_page_settings', 'a:0:{}'),
(9159, 961, '_wp_page_template', 'elementor_header_footer'),
(9161, 961, '_elementor_edit_mode', 'builder'),
(9162, 961, '_elementor_template_type', 'wp-page'),
(9163, 961, '_elementor_version', '3.35.0'),
(9164, 961, '_elementor_pro_version', '3.35.0'),
(9165, 961, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-ss.jpg\",\"id\":711,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9166, 961, '_elementor_page_settings', 'a:0:{}'),
(9171, 962, '_elementor_edit_mode', 'builder'),
(9172, 962, '_elementor_template_type', 'wp-page'),
(9173, 962, '_elementor_version', '3.35.0'),
(9174, 962, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9175, 962, '_elementor_data', '[{\"id\":\"0af1813\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"abd7ca2\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a1b04ff\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f369d60\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"27926a9\"}]},\"elements\":[{\"id\":\"0679b8c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"9f204f5\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b38336f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Home-Care-aa.jpg\",\"id\":959,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b5c566a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7de6246\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1026b88\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Home Care\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e5f4099\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.<\\/p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.<\\/p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care\\u2014 tailored to each client\\u2019s unique preferences and level of need.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ca4739b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd6b797\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8324595\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4ca972c\"}],\"pp_display_conditions\":[{\"_id\":\"eacf824\"}]},\"elements\":[{\"id\":\"3f2b12b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6ef4431\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Offered\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71ea287\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We are fully qualified to provide several services including:\",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7d3b5d1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"In-Home Support Services (IHSS) \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Health Maintenance Activities (HMA)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7f48554\"},{\"text\":\"Homemaker Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"ca40f26\"},{\"text\":\"Personal Care. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1080e53\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e776c1a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We also have the staffing capacity to start care quickly and adjust services to align with the\\nclient\\u2019s evolving needs. \",\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cf33bfc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"a46d894\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach & Experience \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9b603c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.<\\/p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.<\\/p><p><strong>We ensure that: <\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c73b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Plans of care are developed in collaboration with the client, family, and case management team. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c462704\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"f44e774\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3b80010\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f688e83\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ad45c5d\"}],\"pp_display_conditions\":[{\"_id\":\"eec2a24\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"6528d91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Oasis Home Care? \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"c61b545\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c2dd306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We believe Oasis Home Care is the ideal fit for our client based on: \\n\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b266adb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b5f5005\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experience with the CFC, EBD, CMHS Waivers & IHSS Model. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8b210a6\"},{\"text\":\"Rapid Start Up Ability: We can initiate care services quickly upon authorization.\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c37a149\"},{\"text\":\"Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c159769\"},{\"text\":\"Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"a09130e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297877f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"61ccc26\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\"}]},\"elements\":[{\"id\":\"6b0da78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make your next career move meaningful\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a967a3c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Join our fun-loving team and bring joy and comfort to seniors and disabled people \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"1faae14\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cfdc641\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join Our Team\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"3581eaf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"d0a3778\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3effe82\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]'),
(9187, 963, '_elementor_page_settings', 'a:0:{}'),
(9190, 964, '_wp_page_template', 'elementor_header_footer'),
(9191, 964, '_elementor_edit_mode', 'builder'),
(9192, 964, '_elementor_template_type', 'wp-page'),
(9193, 964, '_elementor_version', '3.35.0'),
(9194, 964, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9195, 964, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor1\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_color\":\"#F87D61\",\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9197, 964, '_elementor_page_settings', 'a:0:{}'),
(9200, 965, '_wp_page_template', 'elementor_header_footer'),
(9201, 965, '_elementor_edit_mode', 'builder'),
(9202, 965, '_elementor_template_type', 'wp-page'),
(9203, 965, '_elementor_version', '3.35.0'),
(9204, 965, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9205, 965, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10860, 1120, '_wp_page_template', 'elementor_header_footer'),
(10861, 1120, '_elementor_edit_mode', 'builder'),
(10862, 1120, '_elementor_template_type', 'wp-page'),
(10863, 1120, '_elementor_version', '3.35.0'),
(10864, 1120, '_elementor_pro_version', '3.35.0'),
(10865, 1120, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Communities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10867, 1120, '_elementor_page_settings', 'a:0:{}'),
(10868, 1120, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"sub_title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;s:20:\"columns_mobile_extra\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_info_box_style\";a:5:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9315, 975, '_elementor_page_settings', 'a:0:{}'),
(9318, 976, '_wp_page_template', 'elementor_header_footer'),
(9319, 976, '_elementor_edit_mode', 'builder'),
(9320, 976, '_elementor_template_type', 'wp-page'),
(9321, 976, '_elementor_version', '3.35.0'),
(9322, 976, '_elementor_pro_version', '3.35.0'),
(9323, 976, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}]},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9325, 976, '_elementor_page_settings', 'a:0:{}'),
(9328, 977, '_wp_page_template', 'elementor_header_footer'),
(9329, 977, '_elementor_edit_mode', 'builder'),
(9330, 977, '_elementor_template_type', 'wp-page'),
(9331, 977, '_elementor_version', '3.35.0'),
(9332, 977, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9333, 977, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11352, 7, '_elementor_css', 'a:6:{s:4:\"time\";i:1771527945;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11353, 12, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:8:{i:0;s:14:\"widget-heading\";i:1;s:20:\"e-animation-fadeInUp\";i:2;s:18:\"e-animation-zoomIn\";i:3;s:12:\"widget-image\";i:4;s:23:\"e-animation-fadeInRight\";i:5;s:22:\"e-animation-fadeInLeft\";i:6;s:15:\"widget-icon-box\";i:7;s:16:\"widget-icon-list\";}s:7:\"scripts\";a:3:{i:0;s:18:\"elementor-frontend\";i:1;s:6:\"swiper\";i:2;s:18:\"powerpack-frontend\";}}'),
(11354, 12, '_elementor_css', 'a:6:{s:4:\"time\";i:1771527946;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:3;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11355, 291, '_elementor_css', 'a:6:{s:4:\"time\";i:1771527946;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:2;s:10:\"fa-regular\";i:4;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:3:{i:0;s:6:\"8f12cb\";i:1;s:8:\"3c25f7c1\";i:2;s:8:\"3c25f7c1\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11356, 301, '_elementor_css', 'a:6:{s:4:\"time\";i:1771527946;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:5;s:0:\"\";i:9;s:10:\"fa-regular\";i:10;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:1:{i:0;s:8:\"546136f4\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11357, 291, '_elementor_element_cache', '{\"timeout\":1772181288,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-10f1f9f0 elementor-hidden-mobile_extra elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"10f1f9f0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5e933787 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"5e933787\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2ca4706c elementor-icon-list--layout-inline elementor-list-item-link-inline elementor-mobile_extra-align-center elementor-tablet-align-center elementor-widget elementor-widget-icon-list\\\" data-id=\\\"2ca4706c\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">696 W. 84th AVE. Thornton, CO 80260<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6f33cee2 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"6f33cee2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-e790d38 elementor-icon-list--layout-inline elementor-list-item-link-inline elementor-align-end elementor-mobile_extra-align-center elementor-tablet-align-center elementor-widget elementor-widget-icon-list\\\" data-id=\\\"e790d38\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items elementor-inline-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:7205044242\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">720-504-4242<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item elementor-inline-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:oasisadc1@gmail.com\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">oasisadc1@gmail.com<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-16c76ab header_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"16c76ab\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;sticky&quot;:&quot;top&quot;,&quot;sticky_effects_offset&quot;:50,&quot;sticky_on&quot;:[&quot;widescreen&quot;,&quot;desktop&quot;,&quot;tablet_extra&quot;,&quot;tablet&quot;,&quot;mobile_extra&quot;,&quot;mobile&quot;],&quot;sticky_offset&quot;:0,&quot;sticky_anchor_link_offset&quot;:0}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-16ac11b9 e-con-full e-flex e-con e-child\\\" data-id=\\\"16ac11b9\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjhmMTJjYiIsImVsVHlwZSI6IndpZGdldCIsInNldHRpbmdzIjp7ImltYWdlIjp7ImlkIjo2MzYsInVybCI6Imh0dHBzOlwvXC9tcmFyaWYubWVcL29hc2lzXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDI2XC8wMlwvT2FzaXMtQWR1bHQtRGF5LUNhcmUtQ2VudGVyLWxvZ28tYWIucG5nIiwiYWx0IjoiIiwic291cmNlIjoibGlicmFyeSIsInNpemUiOiIifSwiaW1hZ2Vfc2l6ZSI6ImZ1bGwiLCJsaW5rX3RvIjoiY3VzdG9tIiwiYWxpZ24iOiJsZWZ0Iiwic3BhY2UiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjYxLCJzaXplcyI6W119LCJzcGFjZV90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjAwLCJzaXplcyI6W119LCJzcGFjZV9tb2JpbGUiOnsidW5pdCI6InB4Iiwic2l6ZSI6MTQ4LCJzaXplcyI6W119LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjQwMWM5ZjciLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjQgdG8gMjAyNS0wOC0zMCIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNS0wOC0zMCAxMTowNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19keW5hbWljX18iOnsibGluayI6IltlbGVtZW50b3ItdGFnIGlkPVwiNjQ1ZWFjNFwiIG5hbWU9XCJzaXRlLXVybFwiIHNldHRpbmdzPVwiJTdCJTdEXCJdIn0sInNwYWNlX21vYmlsZV9leHRyYSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNTYsInNpemVzIjpbXX0sIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6IjAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJpbWFnZSJ9\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-3b577549 e-con-full e-flex e-con e-child\\\" data-id=\\\"3b577549\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjM1MDM1NTFkIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiYWxpZ25faXRlbXMiOiJyaWdodCIsInBvaW50ZXIiOiJub25lIiwibWVudV90eXBlIjoib2ZmLWNhbnZhcyIsInRvZ2dsZV9sYWJlbCI6Ik1lbnUiLCJ0b2dnbGVfYWxpZ24iOiJyaWdodCIsImNvbG9yX21lbnVfaXRlbSI6IiNGRkZGRkYiLCJjb2xvcl9tZW51X2l0ZW1faG92ZXIiOiIjZmVjMDEwIiwiY29sb3JfbWVudV9pdGVtX2FjdGl2ZSI6IiNmZWMwMTAiLCJwYWRkaW5nX2hvcml6b250YWxfbWVudV9pdGVtIjp7InVuaXQiOiJweCIsInNpemUiOjAsInNpemVzIjpbXX0sInBhZGRpbmdfdmVydGljYWxfbWVudV9pdGVtIjp7InVuaXQiOiJweCIsInNpemUiOjQsInNpemVzIjpbXX0sIm1lbnVfc3BhY2VfYmV0d2VlbiI6eyJ1bml0IjoicHgiLCJzaXplIjoyOSwic2l6ZXMiOltdfSwiY29sb3JfZHJvcGRvd25faXRlbSI6IiNGRkZGRkYiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiIjMTA4NDkwIiwiY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6IiMwMDAwMDAiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiIjZWY0OTIyIiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiIjMDAwMDAwIiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6IiNlZjQ5MjIiLCJ0b2dnbGVfY29sb3IiOiIjRkZGRkZGIiwidG9nZ2xlX2JhY2tncm91bmRfY29sb3IiOiIjMDIwMTAxMDAiLCJ0b2dnbGVfY29sb3JfaG92ZXIiOiIjRkZGRkZGIiwidG9nZ2xlX2JhY2tncm91bmRfY29sb3JfaG92ZXIiOiIjMDIwMTAxMDAiLCJvZmZjYW52YXNfcG9zaXRpb24iOiJyaWdodCIsIm92ZXJsYXlfYmdfY29sb3IiOiIjRkZGRkZGIiwibW9iaWxlX2xpbmtfY29sb3IiOiIjMzczNzM3IiwibW9iaWxlX3N1Yl9saW5rX2JnX2NvbG9yIjoiI0ZGRkZGRiIsIm1vYmlsZV9zdWJfbGlua19jb2xvciI6IiMzNzM3MzciLCJtb2JpbGVfbGlua19ob3ZlciI6IiNGRkZGRkYiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6IiMxMDg0OTAiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiIjMTA4NDkwIiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiI0ZGRkZGRiIsImNsb3NlX2ljb25fY29sb3IiOiIjMDAwMDAwIiwiY2xvc2VfaWNvbl9iYWNrZ3JvdW5kX2NvbG9yIjoiIzAyMDEwMTAwIiwiY2xvc2VfaWNvbl9iYWNrZ3JvdW5kX2NvbG9yX2hvdmVyIjoiIzAyMDEwMTAwIiwibWVudV90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJtZW51X3R5cG9ncmFwaHlfZm9udF9zaXplIjp7InVuaXQiOiJweCIsInNpemUiOjE3LCJzaXplcyI6W119LCJtZW51X3R5cG9ncmFwaHlfZm9udF93ZWlnaHQiOiI0MDAiLCJkcm9wZG93bl90eXBvZ3JhcGh5X3R5cG9ncmFwaHkiOiJjdXN0b20iLCJkcm9wZG93bl90eXBvZ3JhcGh5X2ZvbnRfc2l6ZSI6eyJ1bml0IjoicHgiLCJzaXplIjoxNywic2l6ZXMiOltdfSwiZHJvcGRvd25fdHlwb2dyYXBoeV9mb250X3dlaWdodCI6IjQwMCIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZDQxZjI0YiIsInBwX2NvbmRpdGlvbl9kYXRlX3ZhbHVlIjoiMjAyNS0wOC0yNCB0byAyMDI1LTA4LTMwIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI1LTA4LTMwIDExOjA3In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJjb2xvcl9tZW51X2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwiY29sb3JfbWVudV9pdGVtX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yOCIsImNvbG9yX21lbnVfaXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I4IiwiY29sb3JfZHJvcGRvd25faXRlbSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW0iOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwiY29sb3JfZHJvcGRvd25faXRlbV9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJiYWNrZ3JvdW5kX2NvbG9yX2Ryb3Bkb3duX2l0ZW1faG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwiY29sb3JfZHJvcGRvd25faXRlbV9hY3RpdmUiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiYmFja2dyb3VuZF9jb2xvcl9kcm9wZG93bl9pdGVtX2FjdGl2ZSI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJ0b2dnbGVfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwidG9nZ2xlX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsIm92ZXJsYXlfYmdfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwibW9iaWxlX2xpbmtfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IzIiwibW9iaWxlX3N1Yl9saW5rX2JnX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsIm1vYmlsZV9zdWJfbGlua19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjMiLCJtb2JpbGVfbGlua19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQiLCJtb2JpbGVfbGlua19iZ19ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjAiLCJtb2JpbGVfc3ViX2xpbmtfYmdfaG92ZXIiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwibW9iaWxlX3N1Yl9saW5rX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yNCIsImNsb3NlX2ljb25fY29sb3IiOiIiLCJjbG9zZV9pY29uX2NvbG9yX2hvdmVyIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMyIsImRyb3Bkb3duX2RpdmlkZXJfY29sb3IiOiIifSwiZHJvcGRvd25fZGl2aWRlcl9ib3JkZXIiOiJzb2xpZCIsImRyb3Bkb3duX2RpdmlkZXJfd2lkdGgiOnsidW5pdCI6InB4Iiwic2l6ZSI6MSwic2l6ZXMiOltdfSwiX2ZsZXhfb3JkZXJfdGFibGV0X2V4dHJhIjoiZW5kIiwiZHJvcGRvd25fZGl2aWRlcl9jb2xvciI6IiMyNUFEQkIiLCJjbG9zZV9pY29uX2NvbG9yX2hvdmVyIjoiIzM3MzczNyJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwcC1hZHZhbmNlZC1tZW51In0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-bd5eb08 elementor-hidden-mobile elementor-widget elementor-widget-button\\\" data-id=\\\"bd5eb08\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Book Now<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjU3NTdjOTI1IiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiZmxleF9kaXJlY3Rpb24iOiJjb2x1bW4iLCJtaW5faGVpZ2h0Ijp7InVuaXQiOiJweCIsInNpemUiOjQ4MCwic2l6ZXMiOltdfSwibWluX2hlaWdodF90YWJsZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjQ1LCJzaXplcyI6W119LCJmbGV4X2p1c3RpZnlfY29udGVudCI6ImNlbnRlciIsImJhY2tncm91bmRfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJiYWNrZ3JvdW5kX2ltYWdlIjp7ImlkIjoxMTYzLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vYXNpc1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDJcL2JyZWFkY3J1bWItYWJjLndlYnAiLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJiYWNrZ3JvdW5kX3Bvc2l0aW9uIjoiY2VudGVyIHJpZ2h0IiwiYmFja2dyb3VuZF9yZXBlYXQiOiJuby1yZXBlYXQiLCJiYWNrZ3JvdW5kX3NpemUiOiJjb3ZlciIsInBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yX2xpc3QiOlt7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y2QUQxRiIsIl9pZCI6Ijc3MTRlM2UifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y3NDk2QSIsIl9pZCI6ImRiMTNmNTgifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiIzU2NUFEOCIsIl9pZCI6ImQ3OWY5MGYifV0sImJhY2tncm91bmRfb3ZlcmxheV9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsImJhY2tncm91bmRfb3ZlcmxheV9ncmFkaWVudF9hbmdsZSI6eyJ1bml0IjoiZGVnIiwic2l6ZSI6MjcyLCJzaXplcyI6W119LCJiYWNrZ3JvdW5kX292ZXJsYXlfb3BhY2l0eSI6eyJ1bml0IjoicHgiLCJzaXplIjowLjA2LCJzaXplcyI6W119LCJwYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjEwIiwicmlnaHQiOiIxMCIsImJvdHRvbSI6IjEwIiwibGVmdCI6IjEwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zX2VuYWJsZSI6InllcyIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3sicHBfY29uZGl0aW9uX2tleSI6InBhZ2UiLCJwcF9jb25kaXRpb25fb3BlcmF0b3IiOiJub3QiLCJfaWQiOiJjNzA5NWQ5IiwicHBfY29uZGl0aW9uX3BhZ2VfdmFsdWUiOlsiMTAiXSwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sIl9fZ2xvYmFsc19fIjp7ImJhY2tncm91bmRfb3ZlcmxheV9jb2xvciI6IiIsImJhY2tncm91bmRfb3ZlcmxheV9jb2xvcl9iIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSJ9LCJlX2Rpc3BsYXlfY29uZGl0aW9ucyI6WyJbW3tcImNvbmRpdGlvblwiOlwicGFnZV90aXRsZVwiLFwiY29tcGFyYXRvclwiOlwiaXNfbm90XCIsXCJ0aXRsZXNcIjpbe1wiaWRcIjoxMixcInRleHRcIjpcIkhvbWVcIn1dfV1dIl0sImJhY2tncm91bmRfb3ZlcmxheV9jb2xvciI6IiMxMDg0OTAiLCJiYWNrZ3JvdW5kX292ZXJsYXlfY29sb3JfYiI6IiNlZjQ5MjIifSwiZWxlbWVudHMiOlt7ImlkIjoiM2MyNWY3YzEiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJfX2R5bmFtaWNfXyI6eyJ0aXRsZSI6IltlbGVtZW50b3ItdGFnIGlkPVwiXCIgbmFtZT1cInBhZ2UtdGl0bGVcIiBzZXR0aW5ncz1cIiU3QiUyMmluY2x1ZGVfY29udGV4dCUyMiUzQSUyMiUyMiUyQyUyMnNob3dfaG9tZV90aXRsZSUyMiUzQSUyMiUyMiUyQyUyMmJlZm9yZSUyMiUzQSUyMiUyMiUyQyUyMmFmdGVyJTIyJTNBJTIyJTIyJTJDJTIyZmFsbGJhY2slMjIlM0ElMjIlMjIlN0RcIl0ifSwidGl0bGUiOiJBZGQgWW91ciBIZWFkaW5nIFRleHQgSGVyZSIsImFsaWduIjoiY2VudGVyIiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIyNDVmOTRiIiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjUtMDgtMzAgMTE6MDcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9hbmltYXRpb24iOiJ6b29tSW4iLCJfX2dsb2JhbHNfXyI6eyJ0aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRoZW1lLXBhZ2UtdGl0bGUifSx7ImlkIjoiZDE0MjY3OCIsImVsVHlwZSI6IndpZGdldCIsInNldHRpbmdzIjp7InRpdGxlIjoiQmxvZyIsImhlYWRlcl9zaXplIjoiaDEiLCJhbGlnbiI6ImNlbnRlciIsInBwX2Rpc3BsYXlfY29uZGl0aW9uc19lbmFibGUiOiJ5ZXMiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjI0NWY5NGIiLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjQgdG8gMjAyNS0wOC0zMCIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNS0wOC0zMCAxMTowNyIsInBwX2NvbmRpdGlvbl9rZXkiOiJzdGF0aWNfcGFnZSIsInBwX2NvbmRpdGlvbl9zdGF0aWNfcGFnZV92YWx1ZSI6ImJsb2cifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9hbmltYXRpb24iOiJ6b29tSW4iLCJfX2dsb2JhbHNfXyI6eyJ0aXRsZV9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjQifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImhlYWRpbmcifV0sImlzSW5uZXIiOmZhbHNlfQ==\\\"]\",\"scripts\":[],\"styles\":[]}}'),
(11350, 291, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:5:{i:0;s:16:\"widget-icon-list\";i:1;s:12:\"widget-image\";i:2;s:8:\"e-sticky\";i:3;s:18:\"e-animation-zoomIn\";i:4;s:14:\"widget-heading\";}s:7:\"scripts\";a:4:{i:0;s:18:\"elementor-frontend\";i:1;s:16:\"jquery-smartmenu\";i:2;s:16:\"pp-advanced-menu\";i:3;s:8:\"e-sticky\";}}'),
(11351, 301, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:7:{i:0;s:14:\"widget-heading\";i:1;s:16:\"widget-icon-list\";i:2;s:12:\"widget-image\";i:3;s:18:\"widget-google_maps\";i:4;s:14:\"widget-divider\";i:5;s:19:\"widget-social-icons\";i:6;s:14:\"e-apple-webkit\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(9358, 979, '_elementor_page_settings', 'a:0:{}'),
(9361, 980, '_wp_page_template', 'elementor_header_footer'),
(9363, 980, '_elementor_edit_mode', 'builder'),
(9364, 980, '_elementor_template_type', 'wp-page'),
(9365, 980, '_elementor_version', '3.35.0'),
(9366, 980, '_elementor_pro_version', '3.35.0'),
(9367, 980, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"height\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9387, 982, '_elementor_page_settings', 'a:0:{}'),
(9388, 983, '_wp_page_template', 'elementor_header_footer'),
(9390, 983, '_elementor_edit_mode', 'builder'),
(9391, 983, '_elementor_template_type', 'wp-page'),
(9392, 983, '_elementor_version', '3.35.0'),
(9393, 983, '_elementor_pro_version', '3.35.0'),
(9394, 983, '_elementor_data', '[{\"id\":\"9cdadfa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"55fd6bb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"20cf8cd\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"01c90f0\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9d4a388\"}]},\"elements\":[{\"id\":\"f39f652\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3114d19\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"73b0f86\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"226b41c\"}],\"pp_display_conditions\":[{\"_id\":\"18d707a\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"8f1de26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"193dd4a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a965ee0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_align\":\"start\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"c5b5508\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b4331be\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"689598d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2835b6a\"}],\"pp_display_conditions\":[{\"_id\":\"1483486\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d032062\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"height\":{\"unit\":\"px\",\"size\":436,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"f260666\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e11b7bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a7c1f95\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"50b1634\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"6752154\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d923fb6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fb7dbe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"13c35f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}]},\"elements\":[{\"id\":\"727f94f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"62043bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69d2691\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9029e7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\",\"pp_condition_date_time_before_value\":\"2026-02-12 10:46\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9395, 966, '_elementor_page_settings', 'a:0:{}'),
(9396, 966, '_elementor_controls_usage', 'a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:2;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:24:\"icon_self_vertical_align\";i:2;s:20:\"icon_vertical_offset\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:7;s:13:\"content_width\";i:5;s:5:\"width\";i:4;s:20:\"flex_justify_content\";i:2;s:8:\"flex_gap\";i:2;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:8;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:5;s:18:\"animation_duration\";i:1;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:3;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:7:\"address\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9491, 995, '_wp_page_template', 'elementor_header_footer'),
(9475, 993, '_wp_page_template', 'elementor_header_footer'),
(9476, 993, '_elementor_edit_mode', 'builder'),
(9477, 993, '_elementor_template_type', 'wp-page'),
(9478, 993, '_elementor_version', '3.35.0'),
(9479, 993, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9480, 993, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9470, 992, '_wp_attached_file', '2026/02/Nursing-Dietary-Counseling-ag.webp'),
(9471, 992, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2026/02/Nursing-Dietary-Counseling-ag.webp\";s:8:\"filesize\";i:74946;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Nursing-Dietary-Counseling-ag-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Nursing-Dietary-Counseling-ag-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5620;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Nursing-Dietary-Counseling-ag-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26482;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9560, 354, '_elementor_page_settings', 'a:0:{}'),
(9561, 354, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9482, 993, '_elementor_page_settings', 'a:0:{}'),
(9483, 994, '_wp_page_template', 'elementor_header_footer'),
(9484, 994, '_elementor_edit_mode', 'builder'),
(9485, 994, '_elementor_template_type', 'wp-page'),
(9486, 994, '_elementor_version', '3.35.0'),
(9487, 994, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9488, 994, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9408, 984, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11104, 1141, '_elementor_page_settings', 'a:0:{}'),
(9412, 984, '_elementor_screenshot_failed', '2026-02-09 10:34:53'),
(9417, 985, '_edit_last', '1'),
(9418, 985, '_edit_lock', '1770635350:1'),
(9419, 985, '_wp_page_template', 'elementor_header_footer'),
(9420, 985, 'site-sidebar-layout', 'no-sidebar'),
(9425, 985, 'theme-transparent-header-meta', 'default'),
(9422, 985, 'ast-site-content-layout', 'full-width-container'),
(9423, 985, 'site-content-style', 'default'),
(9424, 985, 'site-sidebar-style', 'default'),
(9426, 985, 'astra-migrate-meta-layouts', 'set'),
(9427, 987, '_menu_item_type', 'post_type'),
(9428, 987, '_menu_item_menu_item_parent', '38'),
(9429, 987, '_menu_item_object_id', '985'),
(9430, 987, '_menu_item_object', 'page'),
(9431, 987, '_menu_item_target', ''),
(9432, 987, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(9433, 987, '_menu_item_xfn', ''),
(9434, 987, '_menu_item_url', ''),
(9437, 988, '_wp_attached_file', '2026/02/Care-Plans-and-Treatments-agv.jpg'),
(9438, 988, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:41:\"2026/02/Care-Plans-and-Treatments-agv.jpg\";s:8:\"filesize\";i:75936;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Care-Plans-and-Treatments-agv-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15113;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Care-Plans-and-Treatments-agv-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7325;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Care-Plans-and-Treatments-agv-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65706;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(9446, 989, '_elementor_page_settings', 'a:0:{}'),
(9449, 990, '_wp_page_template', 'elementor_header_footer'),
(9450, 990, '_elementor_edit_mode', 'builder'),
(9451, 990, '_elementor_template_type', 'wp-page'),
(9452, 990, '_elementor_version', '3.35.0'),
(9453, 990, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9454, 990, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9456, 990, '_elementor_page_settings', 'a:0:{}'),
(9460, 991, '_elementor_edit_mode', 'builder'),
(9461, 991, '_elementor_template_type', 'wp-page'),
(9462, 991, '_elementor_version', '3.35.0'),
(9463, 991, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9464, 991, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10920, 1123, '_elementor_page_settings', 'a:0:{}'),
(10978, 1130, '_wp_page_template', 'elementor_header_footer'),
(10960, 1128, '_wp_page_template', 'elementor_header_footer'),
(10961, 1128, '_elementor_edit_mode', 'builder'),
(10962, 1128, '_elementor_template_type', 'wp-page'),
(10963, 1128, '_elementor_version', '3.35.5'),
(10964, 1128, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10965, 1128, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11037, 301, '_elementor_page_settings', 'a:0:{}'),
(11038, 301, '_elementor_controls_usage', 'a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:13:\"_border_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:4;s:10:\"link_click\";i:3;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:4;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:4:{s:13:\"content_width\";i:8;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:2;s:14:\"flex_direction\";i:6;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:12;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"section_layout\";a:2:{s:7:\"padding\";i:7;s:20:\"e_display_conditions\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:12;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:2;s:18:\"animation_duration\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:4:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:6:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:1;s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"_section_style\";a:2:{s:21:\"_element_custom_width\";i:1;s:16:\"_flex_align_self\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}}s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:11:\"section_map\";a:3:{s:7:\"address\";i:1;s:4:\"zoom\";i:1;s:6:\"height\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:5:\"color\";i:3;s:6:\"weight\";i:3;s:3:\"gap\";i:3;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:3;s:13:\"_border_width\";i:3;s:13:\"_border_color\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:6:{s:10:\"icon_color\";i:1;s:20:\"icon_secondary_color\";i:1;s:18:\"image_border_width\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;}s:20:\"section_social_hover\";a:2:{s:19:\"hover_primary_color\";i:1;s:21:\"hover_secondary_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(11359, 152, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11360, 12, '_elementor_element_cache', '{\"timeout\":1772181289,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-05ade85 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"05ade85\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-1830253 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"1830253\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3a9b0bc elementor-widget elementor-widget-heading\\\" data-id=\\\"3a9b0bc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h1 class=\\\"elementor-heading-title elementor-size-default\\\">Welcome To Oasis Health Care Community<\\/h1>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6912b52 elementor-widget elementor-widget-heading\\\" data-id=\\\"6912b52\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h5 class=\\\"elementor-heading-title elementor-size-default\\\">Caring for your loved ones with compassion<\\/h5>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-17fe744 elementor-widget elementor-widget-button\\\" data-id=\\\"17fe744\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Schedule Your Appointment<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-1f245c1 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"1f245c1\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-8bde7eb e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8bde7eb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5faeaef elementor-widget elementor-widget-heading\\\" data-id=\\\"5faeaef\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Our Companies<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-ba33eed e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"ba33eed\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjQ1MzViMDAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJwcF9pbmZvX2JveGVzIjpbeyJ0aXRsZSI6IiBPYXNpcyBBZHVsdCBEYXkgQ2FyZSIsIl9pZCI6IjM1YTczZTAiLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+T2FzaXMgQWR1bHQgRGF5IENhcmUgcHJvdmlkZXMgYSBzYWZlLCBzdHJ1Y3R1cmVkLCBhbmQgZW5nYWdpbmcgZGF5dGltZSBlbnZpcm9ubWVudCBmb3Igb2xkZXIgYWR1bHRzIGFuZCBpbmRpdmlkdWFscyB3aXRoIGRpc2FiaWxpdGllcy4gU2VydmljZXMgaW5jbHVkZSBzdXBlcnZpc2lvbiwgcGVyc29uYWwgY2FyZSwgaGVhbHRoIG1vbml0b3JpbmcsIG1lYWxzLCB0aGVyYXBldXRpYyBhY3Rpdml0aWVzLCBhbmQgc29jaWFsIGVuZ2FnZW1lbnQgdG8gcHJvbW90ZSBpbmRlcGVuZGVuY2UgYW5kIHF1YWxpdHkgb2YgbGlmZS48XC9wPiIsImljb25fdHlwZSI6Im5vbmUiLCJpY29uX3RleHQiOiIxIiwiYnV0dG9uX3RleHQiOiJHZXQgU3RhcnRlZCIsImxpbmtfdHlwZSI6ImJveCIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb2FzaXNcL2FkdWx0LWRheS1zZXJ2aWNlc1wvIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LHsidGl0bGUiOiJPYXNpcyBIb21lIENhcmUiLCJzdWJ0aXRsZSI6IiIsImRlc2NyaXB0aW9uIjoiPHA+T2FzaXMgSG9tZSBDYXJlIGRlbGl2ZXJzIG5vbi1tZWRpY2FsIGluLWhvbWUgc3VwcG9ydCBzZXJ2aWNlcyB0aGF0IGFsbG93IGluZGl2aWR1YWxzIHRvIHJlbWFpbiBzYWZlbHkgaW4gdGhlaXIgaG9tZXMuIFNlcnZpY2VzIGluY2x1ZGUgcGVyc29uYWwgY2FyZSwgY29tcGFuaW9uc2hpcCwgbWVkaWNhdGlvbiByZW1pbmRlcnMsIGxpZ2h0IGhvdXNla2VlcGluZywgYW5kIGFzc2lzdGFuY2Ugd2l0aCBkYWlseSBhY3Rpdml0aWVzLjxcL3A+IiwiaWNvbl90eXBlIjoibm9uZSIsImljb25fdGV4dCI6IjEiLCJidXR0b25fdGV4dCI6IkdldCBTdGFydGVkIiwiX2lkIjoiNTc2YzJiOCIsImxpbmtfdHlwZSI6ImJveCIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb2FzaXNcL29hc2lzLWhvbWUtY2FyZVwvIiwiaXNfZXh0ZXJuYWwiOiIiLCJub2ZvbGxvdyI6IiIsImN1c3RvbV9hdHRyaWJ1dGVzIjoiIn19LHsidGl0bGUiOiJPYXNpcyBOb24tTWVkaWNhbCBUcmFuc3BvcnRhdGlvbiIsInN1YnRpdGxlIjoiIiwiZGVzY3JpcHRpb24iOiI8cD5PdXIgbm9uLW1lZGljYWwgdHJhbnNwb3J0YXRpb24gc2VydmljZSBzdXBwb3J0cyBwYXJ0aWNpcGFudHMgaW4gYWNjZXNzaW5nIEFkdWx0IERheSBTZXJ2aWNlcyBhbmQgY29tbXVuaXR5IHJlc291cmNlcyBzYWZlbHkgYW5kIHJlbGlhYmx5LCBlbnN1cmluZyBjb250aW51aXR5IG9mIGNhcmUgYW5kIGVuZ2FnZW1lbnQuPFwvcD4iLCJpY29uX3R5cGUiOiJub25lIiwiaWNvbl90ZXh0IjoiMSIsImJ1dHRvbl90ZXh0IjoiR2V0IFN0YXJ0ZWQiLCJfaWQiOiJiNTMxMmEzIiwibGlua190eXBlIjoiYm94IiwibGluayI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vYXNpc1wvdHJhbnNwb3J0YXRpb25cLyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9fV0sImxheW91dCI6ImdyaWQiLCJ0aXRsZV9odG1sX3RhZyI6Img1Iiwic3ViX3RpdGxlX2h0bWxfdGFnIjoiaDYiLCJlcXVhbF9oZWlnaHRfYm94ZXMiOiJ5ZXMiLCJpbmZvX2JveF9iYWNrZ3JvdW5kX2JhY2tncm91bmQiOiJjbGFzc2ljIiwiaW5mb19ib3hfYm9yZGVyX2JvcmRlciI6InNvbGlkIiwiaW5mb19ib3hfYm9yZGVyX3dpZHRoIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIzIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJpbmZvX2JveF9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjUwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiNTAiLCJsZWZ0IjoiMCIsImlzTGlua2VkIjpmYWxzZX0sImluZm9fYm94X3BhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiNTAiLCJyaWdodCI6IjMwIiwiYm90dG9tIjoiNTAiLCJsZWZ0IjoiMzAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImU4M2NmYWIifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7ImluZm9fYm94X2JhY2tncm91bmRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0IiwiaW5mb19ib3hfYm9yZGVyX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCIsImRlc2NyaXB0aW9uX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiJ9LCJjb2x1bW5zX21vYmlsZV9leHRyYSI6IjEifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoicHAtaW5mby1ib3gtY2Fyb3VzZWwifQ==\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-fc6fca5 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"fc6fca5\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-ebc2892 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"ebc2892\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c927475 elementor-widget elementor-widget-image\\\" data-id=\\\"c927475\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\\\" class=\\\"attachment-full size-full wp-image-109\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-4ca2b5b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4ca2b5b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1730e6f elementor-widget elementor-widget-heading\\\" data-id=\\\"1730e6f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">About Oasis Adult Day Care<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjliMDIyZDkiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5UaGUgT2FzaXMgQWR1bHQgRGF5Y2FyZSBDZW50ZXIgcHJvdmlkaW5nIGNvbXByZWhlbnNpdmUgcHJvZ3JhbSwgb2ZmZXJpbmcgaGVhbHRoLCByZWhhYmlsaXRhdGlvbiwgYW5kIHNvY2lhbCBzZXJ2aWNlcyB0byBzZW5pb3JzIGFuZCBkaXNhYmxlZCBhZHVsdHMuIFRoZSBjZW50ZXIgb2ZmZXIgYW4gYWR1bHQgZGF5LXRpbWUgcHJvZ3JhbSBmb3IgZnJhaWwgc2VuaW9ycyBhbmQgZGlzYWJsZWQgYWR1bHRzIGluIGEgY29tZm9ydGFibGUgZ3JvdXAgc2V0dGluZy4gV2UgcHJvdmlkZSBudXJzaW5nIGNhcmUsIG51dHJpdGlvbmFsIHNlcnZpY2VzLCByZWhhYmlsaXRhdGl2ZSBhbmQgcmVzdG9yYXRpdmUgdGhlcmFwaWVzLiBBbGwgdGhlIGFjdGl2aXRpZXMgYXJlIGdlYXJlZCB0byBwcm9tb3RlIHN0aW11bGF0aW9uIGFuZCBpbmNyZWFzZSBtZW1vcnkuIEFsc28sIGVhY2ggcGFydGljaXBhbnQgaXMgc2VydmVkIGEgd2VsbCBiYWxhbmNlZCBob3QgbHVuY2ggYW5kIGEgbW9ybmluZyBzbmFjayBldmVyeSBkYXkuIFRoZSBjZW50ZXIncyBzdGFmZiBtZW1iZXJzIGFyZSBoaWdobHkgdHJhaW5lZCBhbmQgc3BlY2lhbGl6ZSBpbiB0aGVpciBwcm9mZXNzaW9ucy48XC9wPiIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiYjlmYmJlNSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<div class=\\\"elementor-element elementor-element-9d9fc2f elementor-widget elementor-widget-button\\\" data-id=\\\"9d9fc2f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Learn More<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-0e91ed5 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"0e91ed5\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5ee296b e-con-full e-flex e-con e-child\\\" data-id=\\\"5ee296b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5eb63b0 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"5eb63b0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1354909 elementor-view-stacked elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"1354909\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 48 48\\\" width=\\\"512\\\"><g transform=\\\"translate(-240 -48)\\\"><g id=\\\"Icon\\\"><g transform=\\\"matrix(.707 -.707 .707 .707 87.91 154.711)\\\"><path d=\\\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\\\"><\\/path><\\/g><g transform=\\\"translate(98)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(98 8)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(98 16)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106 8)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106 16)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(114)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(122)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(96)\\\"><path d=\\\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\\\"><\\/path><\\/g><\\/g><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\t Appointment\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tConvenient scheduling options to fit your busy life.\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a2b58fc elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"a2b58fc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Schedule Your Appointment<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-d7ff486 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"d7ff486\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-cd31c0f elementor-widget elementor-widget-image\\\" data-id=\\\"cd31c0f\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"800\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\\\" class=\\\"attachment-full size-full wp-image-1127\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1-300x240.webp 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1-768x614.webp 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-11497f3 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"11497f3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5c53890 elementor-view-stacked elementor-shape-circle elementor-position-block-start elementor-mobile-position-block-start elementor-widget elementor-widget-icon-box\\\" data-id=\\\"5c53890\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-icon\\\">\\n\\t\\t\\t\\t<span  class=\\\"elementor-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 48 48\\\" width=\\\"512\\\"><g transform=\\\"translate(-240 -48)\\\"><g id=\\\"Icon\\\"><g transform=\\\"matrix(.707 -.707 .707 .707 87.91 154.711)\\\"><path d=\\\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\\\"><\\/path><\\/g><g transform=\\\"translate(98)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(98 8)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(98 16)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106 8)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(106 16)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(114)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(122)\\\"><path d=\\\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\\\"><\\/path><\\/g><g transform=\\\"translate(96)\\\"><path d=\\\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\\\"><\\/path><\\/g><\\/g><\\/g><\\/svg>\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tTeam\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tCaring, experienced team for your well-being\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-7050ae4 elementor-align-justify elementor-widget elementor-widget-button\\\" data-id=\\\"7050ae4\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">Meet Our Team<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-2273596 services_sections e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"2273596\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-2657577 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"2657577\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f4694fc elementor-widget elementor-widget-heading\\\" data-id=\\\"f4694fc\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Services Provided<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-c2ae071 e-con-full ser e-flex e-con e-child\\\" data-id=\\\"c2ae071\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-cb1cda9 e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"cb1cda9\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-86fd9e9 elementor-widget elementor-widget-image\\\" data-id=\\\"86fd9e9\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\\\" class=\\\"attachment-full size-full wp-image-988\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8b001f5 elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"8b001f5\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2a637c9 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"2a637c9\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tCare Plans \\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tWe develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-f2f9d27 e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"f2f9d27\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c033fd9 elementor-widget elementor-widget-image\\\" data-id=\\\"c033fd9\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\\\" class=\\\"attachment-full size-full wp-image-1092\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-88d7a58 elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"88d7a58\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-32d2830 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"32d2830\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tDaily Health Care Monitoring\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tOur trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7a5fbe2 e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7a5fbe2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-f743a09 elementor-widget elementor-widget-image\\\" data-id=\\\"f743a09\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\\\" class=\\\"attachment-full size-full wp-image-213\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1-768x512.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-97ff57b elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"97ff57b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8fdedc2 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"8fdedc2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tMeals: Breakfast, Lunch, Snacks\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tNutritious meals and snacks are provided daily to support health and wellness.\\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-f488ec7 e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"f488ec7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-0ee25b2 elementor-widget elementor-widget-image\\\" data-id=\\\"0ee25b2\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"668\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\\\" class=\\\"attachment-full size-full wp-image-217\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa-768x513.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-fe807db elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"fe807db\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-bed0405 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"bed0405\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tMedication Reminders\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tWe provide medication reminders to help clients take their medications as prescribed, \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-84fb19e e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"84fb19e\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-8d11c77 elementor-widget elementor-widget-image\\\" data-id=\\\"8d11c77\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\\\" class=\\\"attachment-full size-full wp-image-992\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag-768x512.webp 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-956a1b1 elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"956a1b1\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3c7cfa7 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"3c7cfa7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tNursing, Dietary Counseling\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tAt Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-3c20dbb e-con-full ser_col animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"3c20dbb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-aed0ae3 elementor-widget elementor-widget-image\\\" data-id=\\\"aed0ae3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\\\" class=\\\"attachment-full size-full wp-image-1139\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1-300x200.webp 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1-768x512.webp 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-d44d9a4 elementor-align-right elementor-widget elementor-widget-button\\\" data-id=\\\"d44d9a4\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-icon\\\">\\n\\t\\t\\t\\t<svg xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\" clip-rule=\\\"evenodd\\\" fill-rule=\\\"evenodd\\\" height=\\\"512\\\" stroke-linejoin=\\\"round\\\" stroke-miterlimit=\\\"2\\\" viewBox=\\\"0 0 16 16\\\" width=\\\"512\\\"><g id=\\\"Icon\\\"><path d=\\\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\\\"><\\/path><path d=\\\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\\\"><\\/path><\\/g><\\/svg>\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-aefe991 elementor-widget elementor-widget-icon-box\\\" data-id=\\\"aefe991\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-box.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-wrapper\\\">\\n\\n\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-icon-box-content\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<h5 class=\\\"elementor-icon-box-title\\\">\\n\\t\\t\\t\\t\\t\\t<span  >\\n\\t\\t\\t\\t\\t\\t\\tPersonal Caregiving\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/h5>\\n\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<p class=\\\"elementor-icon-box-description\\\">\\n\\t\\t\\t\\t\\t\\tCompassionate assistance with activities of daily living such as grooming, toileting, dressing, \\t\\t\\t\\t\\t<\\/p>\\n\\t\\t\\t\\t\\n\\t\\t\\t<\\/div>\\n\\t\\t\\t\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-e9fc70f e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"e9fc70f\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-963a95d elementor-align-center elementor-widget elementor-widget-button\\\" data-id=\\\"963a95d\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"button.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a class=\\\"elementor-button elementor-button-link elementor-size-sm\\\" href=\\\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-content-wrapper\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-button-text\\\">View All Services<\\/span>\\n\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8966155 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"8966155\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-0e7ed69 e-con-full e-flex e-con e-child\\\" data-id=\\\"0e7ed69\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-4f03334 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"4f03334\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;zoomIn&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-6155b75 elementor-widget elementor-widget-heading\\\" data-id=\\\"6155b75\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Social Activities<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-42ca659 e-con-full e-flex e-con e-child\\\" data-id=\\\"42ca659\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-2e28e3b e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"2e28e3b\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ffd5b99 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"ffd5b99\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Arts and Crafts<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Daily Exercise<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Educational Learning Programs<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Field Trips (Local Outings)<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8bf6fa0 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"8bf6fa0\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-c81c1d6 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"c81c1d6\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Gardening<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Holidays and Birthday Celebrations<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Live Entertainment\\/Performers<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Mental Stimulation Games<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-a97bfb2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"a97bfb2\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-4011b98 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"4011b98\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Movies<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Outdoor BBQ<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Socialization\\/Interactions<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Therapeutic Activities<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-d9f444d e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"d9f444d\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-b08d9d3 e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"b08d9d3\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-33027b4 elementor-widget elementor-widget-image\\\" data-id=\\\"33027b4\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"668\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\\\" class=\\\"attachment-full size-full wp-image-232\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa-300x200.jpg 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa-768x513.jpg 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-a2c8a4a e-con-full animated-slow e-flex elementor-invisible e-con e-child\\\" data-id=\\\"a2c8a4a\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-ba8f080 elementor-widget elementor-widget-heading\\\" data-id=\\\"ba8f080\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Day Program Activities<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5dbec3e elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\\\" data-id=\\\"5dbec3e\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Art Therapy, Painting and Expressive Drawing<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Yoga For The Brain<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Low impact Aerobics<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Mindfulness Relaxation Exercises<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Personalized care and support<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11358, 124, '_elementor_inline_svg', '<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>'),
(9490, 994, '_elementor_page_settings', 'a:0:{}'),
(9492, 995, '_elementor_edit_mode', 'builder'),
(9493, 995, '_elementor_template_type', 'wp-page'),
(9494, 995, '_elementor_version', '3.35.0'),
(9495, 995, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9496, 995, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9733, 1016, '_wp_page_template', 'elementor_header_footer'),
(9734, 1016, '_elementor_edit_mode', 'builder'),
(9735, 1016, '_elementor_template_type', 'wp-page'),
(9736, 1016, '_elementor_version', '3.35.0'),
(9737, 1016, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9738, 1016, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9507, 996, '_elementor_page_settings', 'a:0:{}'),
(9510, 997, '_wp_page_template', 'elementor_header_footer'),
(9511, 997, '_elementor_edit_mode', 'builder'),
(9512, 997, '_elementor_template_type', 'wp-page'),
(9513, 997, '_elementor_version', '3.35.0'),
(9514, 997, '_elementor_pro_version', '3.35.0'),
(9515, 997, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-aa.jpg\",\"id\":221,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9517, 997, '_elementor_page_settings', 'a:0:{}'),
(9520, 998, '_wp_page_template', 'elementor_header_footer'),
(9521, 998, '_elementor_edit_mode', 'builder'),
(9522, 998, '_elementor_template_type', 'wp-page'),
(9523, 998, '_elementor_version', '3.35.0'),
(9524, 998, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9525, 998, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9568, 1002, '_elementor_page_settings', 'a:0:{}'),
(9572, 1003, '_wp_page_template', 'elementor_header_footer'),
(9573, 1003, '_elementor_edit_mode', 'builder'),
(9574, 1003, '_elementor_template_type', 'wp-page'),
(9575, 1003, '_elementor_version', '3.35.0'),
(9576, 1003, '_elementor_pro_version', '3.35.0'),
(9577, 1003, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-aa.jpg\",\"id\":205,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9578, 1003, '_elementor_page_settings', 'a:0:{}'),
(9583, 1004, '_elementor_edit_mode', 'builder'),
(9584, 1004, '_elementor_template_type', 'wp-page'),
(9585, 1004, '_elementor_version', '3.35.0'),
(9586, 1004, '_elementor_pro_version', '3.35.0'),
(9587, 1004, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9602, 1006, '_elementor_page_settings', 'a:0:{}'),
(9603, 1007, '_wp_page_template', 'elementor_header_footer'),
(9604, 1007, '_elementor_edit_mode', 'builder'),
(9605, 1007, '_elementor_template_type', 'wp-page'),
(9606, 1007, '_elementor_version', '3.35.0'),
(9607, 1007, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9608, 1007, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9610, 1007, '_elementor_page_settings', 'a:0:{}'),
(9612, 1008, '_elementor_edit_mode', 'builder'),
(9613, 1008, '_elementor_template_type', 'wp-page'),
(9614, 1008, '_elementor_version', '3.35.0'),
(9615, 1008, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9616, 1008, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9865, 1028, '_wp_page_template', 'elementor_header_footer'),
(9845, 1026, '_wp_page_template', 'elementor_header_footer'),
(9846, 1026, '_elementor_edit_mode', 'builder'),
(9847, 1026, '_elementor_template_type', 'wp-page'),
(9848, 1026, '_elementor_version', '3.35.0'),
(9849, 1026, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9850, 1026, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9621, 985, '_elementor_edit_mode', 'builder'),
(9622, 985, '_astra_content_layout_flag', 'disabled'),
(9624, 985, 'ast-title-bar-display', 'disabled'),
(9625, 985, 'ast-featured-img', 'disabled'),
(9626, 985, '_elementor_template_type', 'wp-page'),
(9627, 985, '_elementor_version', '3.35.0'),
(9628, 985, '_elementor_pro_version', '3.35.0'),
(9644, 985, '_elementor_data', '[{\"id\":\"73128bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ed5dec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bdfcbd8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a08c4ba\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c083c5\"}]},\"elements\":[{\"id\":\"018412e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming soon\",\"pp_display_conditions\":[{\"_id\":\"4aa9629\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9630, 1009, '_wp_page_template', 'elementor_header_footer'),
(9632, 1009, '_elementor_edit_mode', 'builder'),
(9633, 1009, '_elementor_template_type', 'wp-page'),
(9634, 1009, '_elementor_version', '3.35.0'),
(9635, 1009, '_elementor_pro_version', '3.35.0'),
(9636, 1009, '_elementor_page_settings', 'a:0:{}'),
(9637, 1010, '_wp_page_template', 'elementor_header_footer'),
(9639, 1010, '_elementor_edit_mode', 'builder'),
(9640, 1010, '_elementor_template_type', 'wp-page'),
(9641, 1010, '_elementor_version', '3.35.0'),
(9642, 1010, '_elementor_pro_version', '3.35.0'),
(9643, 1010, '_elementor_page_settings', 'a:0:{}'),
(9645, 1011, '_wp_page_template', 'elementor_header_footer'),
(9647, 1011, '_elementor_edit_mode', 'builder'),
(9648, 1011, '_elementor_template_type', 'wp-page'),
(9649, 1011, '_elementor_version', '3.35.0'),
(9650, 1011, '_elementor_pro_version', '3.35.0'),
(9651, 1011, '_elementor_data', '[{\"id\":\"73128bd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ed5dec1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"bdfcbd8\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a08c4ba\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c083c5\"}]},\"elements\":[{\"id\":\"018412e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming soon\",\"pp_display_conditions\":[{\"_id\":\"4aa9629\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9652, 985, '_elementor_page_settings', 'a:0:{}'),
(9653, 985, '_elementor_controls_usage', 'a:2:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:14:\"flex_direction\";i:1;s:20:\"flex_justify_content\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9898, 1031, '_wp_page_template', 'elementor_header_footer'),
(9878, 1029, '_wp_page_template', 'elementor_header_footer'),
(9879, 1029, '_elementor_edit_mode', 'builder'),
(9880, 1029, '_elementor_template_type', 'wp-page'),
(9881, 1029, '_elementor_version', '3.35.0'),
(9882, 1029, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9883, 1029, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10534, 1094, '_wp_page_template', 'elementor_header_footer'),
(10703, 1109, '_elementor_version', '3.35.0'),
(10704, 1109, '_elementor_pro_version', '3.35.0'),
(10707, 1110, '_wp_page_template', 'default'),
(10709, 1110, '_elementor_edit_mode', 'builder'),
(10710, 1110, '_elementor_template_type', 'wp-page'),
(10711, 1110, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(10712, 1110, '_elementor_data', '[{\"id\":\"c259c0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}]},\"elements\":[{\"id\":\"a30488c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5701330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9d5ab3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"e18c40b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af0aa04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10713, 1110, '_elementor_version', '3.35.0'),
(10714, 1110, '_elementor_pro_version', '3.35.0'),
(10717, 1111, '_wp_page_template', 'default'),
(10719, 1111, '_elementor_edit_mode', 'builder'),
(10720, 1111, '_elementor_template_type', 'wp-page'),
(10721, 1111, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(10722, 1111, '_elementor_data', '[{\"id\":\"c259c0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}]},\"elements\":[{\"id\":\"a30488c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5701330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\",\"id\":567,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9d5ab3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"e18c40b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af0aa04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10723, 1111, '_elementor_version', '3.35.0'),
(10724, 1111, '_elementor_pro_version', '3.35.0'),
(11145, 1145, '_elementor_edit_mode', 'builder'),
(11146, 1145, '_elementor_template_type', 'wp-page'),
(11147, 1145, '_elementor_version', '3.35.0'),
(11148, 1145, '_elementor_pro_version', '3.35.0'),
(11149, 1145, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10735, 1112, '_elementor_page_settings', 'a:0:{}'),
(10738, 1113, '_wp_page_template', 'elementor_header_footer'),
(10739, 1113, '_elementor_edit_mode', 'builder'),
(10740, 1113, '_elementor_template_type', 'wp-page'),
(10741, 1113, '_elementor_version', '3.35.0'),
(10742, 1113, '_elementor_pro_version', '3.35.0'),
(10743, 1113, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-ah.jpg\",\"id\":1047,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10745, 1113, '_elementor_page_settings', 'a:0:{}'),
(10749, 1114, '_elementor_edit_mode', 'builder'),
(10750, 1114, '_elementor_template_type', 'wp-page'),
(10751, 1114, '_elementor_version', '3.35.0'),
(10752, 1114, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10753, 1114, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11097, 1141, '_wp_page_template', 'elementor_header_footer'),
(11098, 1141, '_elementor_edit_mode', 'builder'),
(11099, 1141, '_elementor_template_type', 'wp-page'),
(11100, 1141, '_elementor_version', '3.35.5'),
(11101, 1141, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11102, 1141, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9958, 1037, '_wp_page_template', 'elementor_header_footer'),
(9942, 1035, '_wp_page_template', 'elementor_header_footer'),
(9943, 1035, '_elementor_edit_mode', 'builder'),
(9944, 1035, '_elementor_template_type', 'wp-page'),
(9945, 1035, '_elementor_version', '3.35.0'),
(9946, 1035, '_elementor_pro_version', '3.35.0'),
(9947, 1035, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89dc59c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Health Care Community\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9949, 1035, '_elementor_page_settings', 'a:0:{}'),
(9950, 1036, '_wp_page_template', 'elementor_header_footer'),
(9951, 1036, '_elementor_edit_mode', 'builder'),
(9952, 1036, '_elementor_template_type', 'wp-page'),
(9953, 1036, '_elementor_version', '3.35.0'),
(9954, 1036, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9955, 1036, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89dc59c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Health Care Community\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9667, 1012, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9671, 1012, '_elementor_screenshot_failed', '2026-02-09 09:28:05'),
(9693, 1014, '_elementor_source', 'post'),
(9694, 1014, '_elementor_edit_mode', 'builder'),
(9695, 1014, '_elementor_template_type', 'header'),
(9696, 1014, '_elementor_version', '3.35.0'),
(9697, 1014, '_elementor_pro_version', '3.35.0'),
(9698, 1014, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9699, 1014, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10587, 1099, '_wp_page_template', 'elementor_header_footer'),
(10567, 1097, '_wp_page_template', 'elementor_header_footer'),
(10568, 1097, '_elementor_edit_mode', 'builder'),
(10569, 1097, '_elementor_template_type', 'wp-page'),
(10570, 1097, '_elementor_version', '3.35.0'),
(10571, 1097, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10572, 1097, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9685, 1013, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(9706, 1015, '_elementor_source', 'post'),
(9707, 1015, '_elementor_edit_mode', 'builder'),
(9708, 1015, '_elementor_template_type', 'header'),
(9709, 1015, '_elementor_version', '3.35.0'),
(9710, 1015, '_elementor_pro_version', '3.35.0'),
(9711, 1015, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9712, 1015, '_elementor_data', '[{\"id\":\"10f1f9f0\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f51b15c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"dce7b71\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6012929\"}],\"padding\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"10\",\"bottom\":\"1\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4b4bc7e\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\"},\"flex_gap_mobile_extra\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"flex_direction_tablet\":\"column\",\"flex_gap_tablet\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0},\"z_index\":9,\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5e933787\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_gap_mobile\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":false,\"unit\":\"px\",\"size\":0},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ca4706c\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=10&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"link_click\":\"inline\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6f33cee2\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"04622e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5f3ca19\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b808c3c\"}],\"pp_display_conditions\":[{\"_id\":\"8bb244d\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"8\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e790d38\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"606f4a9\",\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2fdcc4e\"}],\"link_click\":\"inline\",\"icon_align\":\"end\",\"pp_display_conditions\":[{\"_id\":\"3d111e6\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor8\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor8\"},\"icon_align_mobile_extra\":\"center\",\"icon_align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"16c76ab\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b3d4515\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"458adda\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b286768\"}],\"pp_display_conditions\":[{\"_id\":\"0f35c1f\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"flex_wrap_mobile_extra\":\"nowrap\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"10\",\"bottom\":\"2\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":99,\"css_classes\":\"header_sections\",\"sticky\":\"top\",\"sticky_effects_offset\":50,\"flex_gap\":{\"column\":\"0\",\"row\":\"0\",\"isLinked\":true,\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"16ac11b9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[{\"id\":\"8f12cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":261,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":148,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"401c9f7\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"645eac4\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"space_mobile_extra\":{\"unit\":\"px\",\"size\":156,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b577549\",\"elType\":\"container\",\"settings\":{\"flex_justify_content\":\"flex-end\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2264489\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0aab7e4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"59da66e\"}],\"pp_display_conditions\":[{\"_id\":\"b5a4b1c\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"flex_direction\":\"row\",\"flex_align_items\":\"center\",\"width_tablet_extra\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20}},\"elements\":[{\"id\":\"3503551d\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"pointer\":\"none\",\"menu_type\":\"off-canvas\",\"toggle_label\":\"Menu\",\"toggle_align\":\"right\",\"color_menu_item\":\"#FFFFFF\",\"color_menu_item_hover\":\"#fec010\",\"color_menu_item_active\":\"#fec010\",\"padding_horizontal_menu_item\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"menu_space_between\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"color_dropdown_item\":\"#FFFFFF\",\"background_color_dropdown_item\":\"#108490\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ef4922\",\"color_dropdown_item_active\":\"#000000\",\"background_color_dropdown_item_active\":\"#ef4922\",\"toggle_color\":\"#FFFFFF\",\"toggle_background_color\":\"#02010100\",\"toggle_color_hover\":\"#FFFFFF\",\"toggle_background_color_hover\":\"#02010100\",\"offcanvas_position\":\"right\",\"overlay_bg_color\":\"#FFFFFF\",\"mobile_link_color\":\"#373737\",\"mobile_sub_link_bg_color\":\"#FFFFFF\",\"mobile_sub_link_color\":\"#373737\",\"mobile_link_hover\":\"#FFFFFF\",\"mobile_link_bg_hover\":\"#108490\",\"mobile_sub_link_bg_hover\":\"#108490\",\"mobile_sub_link_hover\":\"#FFFFFF\",\"close_icon_color\":\"#000000\",\"close_icon_background_color\":\"#02010100\",\"close_icon_background_color_hover\":\"#02010100\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"menu_typography_font_weight\":\"400\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"dropdown_typography_font_weight\":\"400\",\"pp_display_conditions\":[{\"_id\":\"d41f24b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"color_menu_item\":\"globals\\/colors?id=astglobalcolor2\",\"color_menu_item_hover\":\"globals\\/colors?id=astglobalcolor8\",\"color_menu_item_active\":\"globals\\/colors?id=astglobalcolor8\",\"color_dropdown_item\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item\":\"globals\\/colors?id=astglobalcolor0\",\"color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_hover\":\"globals\\/colors?id=astglobalcolor1\",\"color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor4\",\"background_color_dropdown_item_active\":\"globals\\/colors?id=astglobalcolor1\",\"toggle_color\":\"globals\\/colors?id=astglobalcolor2\",\"toggle_color_hover\":\"globals\\/colors?id=astglobalcolor2\",\"overlay_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_sub_link_bg_color\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_sub_link_color\":\"globals\\/colors?id=astglobalcolor3\",\"mobile_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"mobile_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_bg_hover\":\"globals\\/colors?id=astglobalcolor0\",\"mobile_sub_link_hover\":\"globals\\/colors?id=astglobalcolor4\",\"close_icon_color\":\"\",\"close_icon_color_hover\":\"globals\\/colors?id=astglobalcolor3\",\"dropdown_divider_color\":\"\"},\"dropdown_divider_border\":\"solid\",\"dropdown_divider_width\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_flex_order_tablet_extra\":\"end\",\"dropdown_divider_color\":\"#25ADBB\",\"close_icon_color_hover\":\"#373737\"},\"elements\":[],\"widgetType\":\"pp-advanced-menu\"},{\"id\":\"bd5eb08\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book Now\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"312c2da\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor4\",\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"hide_mobile\":\"hidden-mobile\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5757c925\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"min_height_tablet\":{\"unit\":\"px\",\"size\":245,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"id\":400,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/breadcrumb-abc.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7714e3e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"db13f58\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d79f90f\"}],\"background_overlay_background\":\"classic\",\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":272,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.06,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"pp_condition_key\":\"page\",\"pp_condition_operator\":\"not\",\"_id\":\"c7095d9\",\"pp_condition_page_value\":[\"10\"],\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"globals\\/colors?id=astglobalcolor1\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":12,\\\"text\\\":\\\"Home\\\"}]}]]\"],\"background_overlay_color\":\"#108490\",\"background_overlay_color_b\":\"#ef4922\"},\"elements\":[{\"id\":\"3c25f7c1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"page-title\\\" settings=\\\"%7B%22include_context%22%3A%22%22%2C%22show_home_title%22%3A%22%22%2C%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"Add Your Heading Text Here\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"theme-page-title\"},{\"id\":\"d142678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Blog\",\"header_size\":\"h1\",\"align\":\"center\",\"pp_display_conditions_enable\":\"yes\",\"pp_display_conditions\":[{\"_id\":\"245f94b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 11:07\",\"pp_condition_key\":\"static_page\",\"pp_condition_static_page_value\":\"blog\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_animation\":\"zoomIn\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(9700, 1014, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10923, 1124, '_wp_page_template', 'elementor_header_footer'),
(10924, 1124, '_elementor_edit_mode', 'builder'),
(10925, 1124, '_elementor_template_type', 'wp-page'),
(10926, 1124, '_elementor_version', '3.35.0'),
(10927, 1124, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10928, 1124, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9841, 346, '_elementor_page_settings', 'a:0:{}'),
(9842, 346, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9740, 1016, '_elementor_page_settings', 'a:0:{}'),
(9743, 1017, '_wp_page_template', 'elementor_header_footer'),
(9744, 1017, '_elementor_edit_mode', 'builder'),
(9745, 1017, '_elementor_template_type', 'wp-page'),
(9746, 1017, '_elementor_version', '3.35.0'),
(9747, 1017, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9748, 1017, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9750, 1017, '_elementor_page_settings', 'a:0:{}'),
(9753, 1018, '_wp_page_template', 'elementor_header_footer'),
(9754, 1018, '_elementor_edit_mode', 'builder'),
(9755, 1018, '_elementor_template_type', 'wp-page'),
(9756, 1018, '_elementor_version', '3.35.0'),
(9757, 1018, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9758, 1018, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10929, 1124, '_elementor_page_settings', 'a:0:{}'),
(11361, 301, '_elementor_element_cache', '{\"timeout\":1772181289,\"value\":{\"content\":\"[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6ImJkOTg2NGMiLCJlbFR5cGUiOiJjb250YWluZXIiLCJzZXR0aW5ncyI6eyJmbGV4X2RpcmVjdGlvbiI6ImNvbHVtbiIsImJhY2tncm91bmRfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJiYWNrZ3JvdW5kX2NvbG9yIjoiI0ZFRjRGMSIsInBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yX2xpc3QiOlt7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y2QUQxRiIsIl9pZCI6IjlhYWY1MDEifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiI0Y3NDk2QSIsIl9pZCI6ImM4ZmMwZGEifSx7InBwX2FuaW1hdGVkX2dyYWRpZW50X2JnX2NvbG9yIjoiIzU2NUFEOCIsIl9pZCI6IjZlMzE1NDcifV0sInBhZGRpbmciOnsidW5pdCI6InB4IiwidG9wIjoiNjAiLCJyaWdodCI6IjEwIiwiYm90dG9tIjoiNjAiLCJsZWZ0IjoiMTAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjE0YWU2OGUifV0sIl9fZ2xvYmFsc19fIjp7ImJhY2tncm91bmRfY29sb3IiOiIifSwiZV9kaXNwbGF5X2NvbmRpdGlvbnMiOlsiW1t7XCJjb25kaXRpb25cIjpcInBhZ2VfdGl0bGVcIixcImNvbXBhcmF0b3JcIjpcImlzX25vdFwiLFwidGl0bGVzXCI6W3tcImlkXCI6MjQsXCJ0ZXh0XCI6XCJDYXJlZXJzXCJ9XX1dXSJdfSwiZWxlbWVudHMiOlt7ImlkIjoiMTRhZTAxNyIsImVsVHlwZSI6ImNvbnRhaW5lciIsInNldHRpbmdzIjp7ImNvbnRlbnRfd2lkdGgiOiJmdWxsIiwiZmxleF9kaXJlY3Rpb24iOiJyb3ciLCJmbGV4X2RpcmVjdGlvbl90YWJsZXQiOiJjb2x1bW4tcmV2ZXJzZSIsImJhY2tncm91bmRfYmFja2dyb3VuZCI6ImNsYXNzaWMiLCJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvcl9saXN0IjpbeyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNkFEMUYiLCJfaWQiOiJlMDhjMzE1In0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNzQ5NkEiLCJfaWQiOiI0NjNkZDRmIn0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiM1NjVBRDgiLCJfaWQiOiI3NDU2YWRkIn1dLCJib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjMwIiwicmlnaHQiOiIzMCIsImJvdHRvbSI6IjMwIiwibGVmdCI6IjMwIiwiaXNMaW5rZWQiOnRydWV9LCJwYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjAiLCJpc0xpbmtlZCI6ZmFsc2V9LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjZkZmY0OTcifV0sIl9fZ2xvYmFsc19fIjp7ImJhY2tncm91bmRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3I0In19LCJlbGVtZW50cyI6W3siaWQiOiI1N2MxZTVjIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJ3aWR0aCI6eyJ1bml0IjoiJSIsInNpemUiOjUwLCJzaXplcyI6W119LCJ3aWR0aF90YWJsZXQiOnsidW5pdCI6IiUiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sIndpZHRoX21vYmlsZV9leHRyYSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJ3aWR0aF9tb2JpbGUiOnsidW5pdCI6IiUiLCJzaXplIjoiIiwic2l6ZXMiOltdfSwiZmxleF9qdXN0aWZ5X2NvbnRlbnQiOiJjZW50ZXIiLCJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvcl9saXN0IjpbeyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNkFEMUYiLCJfaWQiOiIyZDVlZjBjIn0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiNGNzQ5NkEiLCJfaWQiOiI4MjliY2JmIn0seyJwcF9hbmltYXRlZF9ncmFkaWVudF9iZ19jb2xvciI6IiM1NjVBRDgiLCJfaWQiOiJiNjE1OWQ0In1dLCJwYWRkaW5nIjp7InVuaXQiOiJweCIsInRvcCI6IjMwIiwicmlnaHQiOiIzMCIsImJvdHRvbSI6IjMwIiwibGVmdCI6IjMwIiwiaXNMaW5rZWQiOnRydWV9LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImI3MTc4MmUifV0sImFuaW1hdGlvbiI6Im5vbmUiLCJhbmltYXRpb25fZHVyYXRpb24iOiJzbG93In0sImVsZW1lbnRzIjpbeyJpZCI6IjAxYWI1YmYiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJ0aXRsZSI6IkNhcmVlcnMiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImQ1N2FlYjcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJoZWFkaW5nIn0seyJpZCI6IjU0NmQ5ZTQiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5Kb2luIGEgdGVhbSB0aGF0IG1ha2VzIGEgZGlmZmVyZW5jZSBldmVyeSBkYXkuIE9hc2lzIEhlYWx0aCBDYXJlIENvbW11bml0eSBpcyBhbHdheXMgc2Vla2luZyBjYXJpbmcsIGRlcGVuZGFibGUsIGFuZCBtb3RpdmF0ZWQgcHJvZmVzc2lvbmFscyB0byBqb2luIG91ciBncm93aW5nIG9yZ2FuaXphdGlvbi4gV2Ugb2ZmZXIgYSBzdXBwb3J0aXZlIHdvcmsgZW52aXJvbm1lbnQsIHRyYWluaW5nIG9wcG9ydHVuaXRpZXMsIGFuZCB0aGUgY2hhbmNlIHRvIHBvc2l0aXZlbHkgaW1wYWN0IHRoZSBsaXZlcyBvZiBvdGhlcnMuPGJyIFwvPjxzdHJvbmc+Q3VycmVudCBvcHBvcnR1bml0aWVzIG1heSBpbmNsdWRlOjxcL3N0cm9uZz48XC9wPiIsIl9tYXJnaW4iOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMCIsImJvdHRvbSI6Ii0yMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiIxMzg5ZDZiIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoidGV4dC1lZGl0b3IifSx7ImlkIjoiYzk1MThkMiIsImVsVHlwZSI6IndpZGdldCIsInNldHRpbmdzIjp7Imljb25fbGlzdCI6W3sidGV4dCI6IiBEaXJlY3QgQ2FyZSBXb3JrZXJzIFwvIENhcmVnaXZlcnMiLCJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWFuZ2xlLWRvdWJsZS1yaWdodCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiI3YzZmMmE2In0seyJ0ZXh0IjoiQWN0aXZpdHkgQXNzaXN0YW50cyIsInNlbGVjdGVkX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtYW5nbGUtZG91YmxlLXJpZ2h0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjE1NTQ1ZGUifSx7InRleHQiOiJIb21lIENhcmUgQWlkZXMiLCJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjoiZmFzIGZhLWFuZ2xlLWRvdWJsZS1yaWdodCIsImxpYnJhcnkiOiJmYS1zb2xpZCJ9LCJfaWQiOiIwYjBhODI4In0seyJ0ZXh0IjoiRHJpdmVycyAoTm9uLU1lZGljYWwgVHJhbnNwb3J0YXRpb24pIiwic2VsZWN0ZWRfaWNvbiI6eyJ2YWx1ZSI6ImZhcyBmYS1hbmdsZS1kb3VibGUtcmlnaHQiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiNzUxMzMwYSJ9LHsidGV4dCI6Ik51cnNlcyAoUGFydC1UaW1lKSIsInNlbGVjdGVkX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtYW5nbGUtZG91YmxlLXJpZ2h0IiwibGlicmFyeSI6ImZhLXNvbGlkIn0sIl9pZCI6IjJmZGY4ZjEifV0sInNwYWNlX2JldHdlZW4iOnsidW5pdCI6InB4Iiwic2l6ZSI6OCwic2l6ZXMiOltdfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI3MGE1YzYxIiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI2LTAyLTA4IDA2OjA3In1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJpY29uX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMSJ9LCJpY29uX3NlbGZfdmVydGljYWxfYWxpZ24iOiJmbGV4LXN0YXJ0IiwiaWNvbl92ZXJ0aWNhbF9vZmZzZXQiOnsidW5pdCI6InB4Iiwic2l6ZSI6NSwic2l6ZXMiOltdfX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6Imljb24tbGlzdCJ9LHsiaWQiOiI3YTEwYzA2IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiZWRpdG9yIjoiQXBwbHkgYnkgc3VibWl0dGluZyB5b3VyIHJlc3VtZSB0aHJvdWdoIG91ciB3ZWJzaXRlIG9yIGNvbnRhY3Rpbmcgb3VyIG9mZmljZS4iLCJfcGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIxMCIsInJpZ2h0IjoiMTAiLCJib3R0b20iOiIxMCIsImxlZnQiOiIxMCIsImlzTGlua2VkIjp0cnVlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI2OWJiODZiIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsIl9ib3JkZXJfYm9yZGVyIjoic29saWQiLCJfYm9yZGVyX3dpZHRoIjp7InVuaXQiOiJweCIsInRvcCI6IjAiLCJyaWdodCI6IjAiLCJib3R0b20iOiIwIiwibGVmdCI6IjQiLCJpc0xpbmtlZCI6ZmFsc2V9LCJfYm9yZGVyX3JhZGl1cyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiX19nbG9iYWxzX18iOnsiX2JhY2tncm91bmRfY29sb3IiOiIiLCJfYm9yZGVyX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMCJ9LCJfYmFja2dyb3VuZF9jb2xvciI6IiNGRUY0RjEiLCJfYm9yZGVyX2NvbG9yIjoiIzEwODQ5MCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9LHsiaWQiOiI0ODdiYTYwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsidGV4dCI6IkFwcGx5IE5vdyIsImxpbmsiOnsidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb2FzaXNcL2NhcmVlcnNcLyIsImlzX2V4dGVybmFsIjoiIiwibm9mb2xsb3ciOiIiLCJjdXN0b21fYXR0cmlidXRlcyI6IiJ9LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjFmZjM5ZWMifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJidXR0b24ifV0sImlzSW5uZXIiOnRydWV9LHsiaWQiOiJhZDU3YmJjIiwiZWxUeXBlIjoiY29udGFpbmVyIiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJ3aWR0aCI6eyJ1bml0IjoiJSIsInNpemUiOjUwLCJzaXplcyI6W119LCJ3aWR0aF90YWJsZXQiOnsidW5pdCI6IiUiLCJzaXplIjoxMDAsInNpemVzIjpbXX0sIndpZHRoX21vYmlsZV9leHRyYSI6eyJ1bml0IjoiJSIsInNpemUiOiIiLCJzaXplcyI6W119LCJ3aWR0aF9tb2JpbGUiOnsidW5pdCI6IiUiLCJzaXplIjoiIiwic2l6ZXMiOltdfSwicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3JfbGlzdCI6W3sicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjZBRDFGIiwiX2lkIjoiMmQ1ZWYwYyJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjRjc0OTZBIiwiX2lkIjoiODI5YmNiZiJ9LHsicHBfYW5pbWF0ZWRfZ3JhZGllbnRfYmdfY29sb3IiOiIjNTY1QUQ4IiwiX2lkIjoiYjYxNTlkNCJ9XSwicGFkZGluZyI6eyJ1bml0IjoicHgiLCJ0b3AiOiIwIiwicmlnaHQiOiIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiNzE3ODJlIn1dLCJhbmltYXRpb24iOiJub25lIn0sImVsZW1lbnRzIjpbeyJpZCI6ImRiODliZTIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpbWFnZSI6eyJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vYXNpc1wvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNlwvMDJcL2NhcmVlci1hYi0xLndlYnAiLCJpZCI6MTEzNCwic2l6ZSI6IiIsImFsdCI6IiIsInNvdXJjZSI6ImxpYnJhcnkifSwiaW1hZ2Vfc2l6ZSI6ImZ1bGwiLCJpbWFnZV9ib3JkZXJfYm9yZGVyIjoic29saWQiLCJpbWFnZV9ib3JkZXJfd2lkdGgiOnsidW5pdCI6InB4IiwidG9wIjoiMSIsInJpZ2h0IjoiMSIsImJvdHRvbSI6IjEiLCJsZWZ0IjoiMSIsImlzTGlua2VkIjp0cnVlfSwiaW1hZ2VfYm9yZGVyX2NvbG9yIjoiI0RERERERCIsImltYWdlX2JvcmRlcl9yYWRpdXMiOnsidW5pdCI6InB4IiwidG9wIjoiMCIsInJpZ2h0IjoiMjAiLCJib3R0b20iOiIyMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwiaW1hZ2VfYm9yZGVyX3JhZGl1c190YWJsZXQiOnsidW5pdCI6InB4IiwidG9wIjoiMjAiLCJyaWdodCI6IjIwIiwiYm90dG9tIjoiMCIsImxlZnQiOiIwIiwiaXNMaW5rZWQiOmZhbHNlfSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiOTZmNDFlIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQifSwiZWxlbWVudHMiOltdLCJ3aWRnZXRUeXBlIjoiaW1hZ2UifV0sImlzSW5uZXIiOnRydWV9XSwiaXNJbm5lciI6dHJ1ZX1dLCJpc0lubmVyIjpmYWxzZX0=\\\"]<div class=\\\"elementor-element elementor-element-6ba3d82 e-con-full e-flex e-con e-parent\\\" data-id=\\\"6ba3d82\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-63a1fff elementor-widget elementor-widget-google_maps\\\" data-id=\\\"63a1fff\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"google_maps.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-custom-embed\\\">\\n\\t\\t\\t<iframe loading=\\\"lazy\\\"\\n\\t\\t\\t\\t\\tsrc=\\\"https:\\/\\/maps.google.com\\/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\\\"\\n\\t\\t\\t\\t\\ttitle=\\\"696 W. 84th AVE. Thornton, CO 80260\\\"\\n\\t\\t\\t\\t\\taria-label=\\\"696 W. 84th AVE. Thornton, CO 80260\\\"\\n\\t\\t\\t><\\/iframe>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-41c977f4 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"41c977f4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-5fbb6a42 e-flex e-con-boxed e-con e-child\\\" data-id=\\\"5fbb6a42\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-169d01e4 e-con-full e-flex e-con e-child\\\" data-id=\\\"169d01e4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjU0NjEzNmY0IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiaW1hZ2UiOnsiaWQiOjYzNiwidXJsIjoiaHR0cHM6XC9cL21yYXJpZi5tZVwvb2FzaXNcL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjZcLzAyXC9PYXNpcy1BZHVsdC1EYXktQ2FyZS1DZW50ZXItbG9nby1hYi5wbmciLCJhbHQiOiIiLCJzb3VyY2UiOiJsaWJyYXJ5Iiwic2l6ZSI6IiJ9LCJpbWFnZV9zaXplIjoiZnVsbCIsImxpbmtfdG8iOiJjdXN0b20iLCJhbGlnbiI6ImxlZnQiLCJzcGFjZSI6eyJ1bml0IjoicHgiLCJzaXplIjozMTIsInNpemVzIjpbXX0sInNwYWNlX3RhYmxldCI6eyJ1bml0IjoicHgiLCJzaXplIjoiIiwic2l6ZXMiOltdfSwic3BhY2VfbW9iaWxlIjp7InVuaXQiOiJweCIsInNpemUiOiIiLCJzaXplcyI6W119LCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjQ2ZTRhZmYiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjQtMDItMjIgMDc6MzYiLCJwcF9jb25kaXRpb25fZGF0ZV92YWx1ZSI6IjIwMjUtMDgtMjQgdG8gMjAyNS0wOC0zMCIsInBwX2NvbmRpdGlvbl9kZXZpY2VfdHlwZV92YWx1ZSI6Im1vYmlsZSJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19keW5hbWljX18iOnsibGluayI6IltlbGVtZW50b3ItdGFnIGlkPVwiYmUzNmFlZVwiIG5hbWU9XCJzaXRlLXVybFwiIHNldHRpbmdzPVwiJTdCJTdEXCJdIn0sIl9lbGVtZW50X2N1c3RvbV93aWR0aCI6eyJ1bml0IjoicHgiLCJzaXplIjoyODgsInNpemVzIjpbXX0sIl9lbGVtZW50X2N1c3RvbV93aWR0aF9tb2JpbGVfZXh0cmEiOnsidW5pdCI6InB4Iiwic2l6ZSI6MjEyLCJzaXplcyI6W119LCJfYmFja2dyb3VuZF9iYWNrZ3JvdW5kIjoiY2xhc3NpYyIsIl9ib3JkZXJfcmFkaXVzIjp7InVuaXQiOiJweCIsInRvcCI6IjUiLCJyaWdodCI6IjUiLCJib3R0b20iOiI1IiwibGVmdCI6IjUiLCJpc0xpbmtlZCI6dHJ1ZX0sIl9fZ2xvYmFsc19fIjp7Il9iYWNrZ3JvdW5kX2NvbG9yIjoiIn0sIl9mbGV4X2FsaWduX3NlbGYiOiJmbGV4LXN0YXJ0In0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6ImltYWdlIn0=\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjQ4ZDUzZmFmIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiZWRpdG9yIjoiPHA+VGhlIE9hc2lzIEFkdWx0IERheWNhcmUgQ2VudGVyIHByb3ZpZGluZyBjb21wcmVoZW5zaXZlIHByb2dyYW0sIG9mZmVyaW5nIGhlYWx0aCwgcmVoYWJpbGl0YXRpb24sIGFuZCBzb2NpYWwgc2VydmljZXMgdG8gc2VuaW9ycyBhbmQgZGlzYWJsZWQgYWR1bHRzLjxcL3A+IiwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiJiMjRjOGM5IiwicHBfY29uZGl0aW9uX2RhdGVfdGltZV9iZWZvcmVfdmFsdWUiOiIyMDI0LTAyLTIyIDA3OjM2IiwicHBfY29uZGl0aW9uX2RhdGVfdmFsdWUiOiIyMDI1LTA4LTI0IHRvIDIwMjUtMDgtMzAiLCJwcF9jb25kaXRpb25fZGV2aWNlX3R5cGVfdmFsdWUiOiJtb2JpbGUifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7InRleHRfY29sb3IiOiIifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InRleHQtZWRpdG9yIn0=\\\"]\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-6bb7d4a4 e-con-full e-flex e-con e-child\\\" data-id=\\\"6bb7d4a4\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-3b2d5b54 elementor-widget elementor-widget-heading\\\" data-id=\\\"3b2d5b54\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Contact Info<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-419ed80b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"419ed80b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1be90728 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"1be90728\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\\\" target=\\\"_blank\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-map-marker-alt\\\" viewBox=\\\"0 0 384 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">696 W. 84th AVE. Thornton, CO 80260<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"tel:7205044242\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-phone-alt\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">720-504-4242<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"fax:3032659199\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-fax\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">303-265-9199<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"mailto:oasisadc1@gmail.com\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-far-envelope\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">oasisadc1@gmail.com<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-1460fd85 e-grid-align-left elementor-shape-rounded elementor-grid-0 elementor-widget elementor-widget-social-icons\\\" data-id=\\\"1460fd85\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"social-icons.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-social-icons-wrapper elementor-grid\\\" role=\\\"list\\\">\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-f08ab80\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Facebook-f<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-facebook-f\\\" viewBox=\\\"0 0 320 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-bc50426\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">X-twitter<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-x-twitter\\\" viewBox=\\\"0 0 512 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-grid-item\\\" role=\\\"listitem\\\">\\n\\t\\t\\t\\t\\t<a class=\\\"elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-5ec7d05\\\" href=\\\"#\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-screen-only\\\">Linkedin-in<\\/span>\\n\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fab-linkedin-in\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-8520cd7 e-con-full e-flex e-con e-child\\\" data-id=\\\"8520cd7\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-14af065 elementor-widget elementor-widget-heading\\\" data-id=\\\"14af065\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Quicklinks<\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-2b702a3 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"2b702a3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-39e02fe elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"39e02fe\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Services<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Locations<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Our Companies<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Our Team<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/privacy-notes\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Privacy Notes<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-fe6dbdb e-con-full e-flex e-con e-child\\\" data-id=\\\"fe6dbdb\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-a70c18b elementor-widget elementor-widget-heading\\\" data-id=\\\"a70c18b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h6 class=\\\"elementor-heading-title elementor-size-default\\\">Services <\\/h6>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-801011b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\\\" data-id=\\\"801011b\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"divider.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<div class=\\\"elementor-divider\\\">\\n\\t\\t\\t<span class=\\\"elementor-divider-separator\\\">\\n\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-b9d30a3 elementor-list-item-link-inline elementor-icon-list--layout-traditional elementor-widget elementor-widget-icon-list\\\" data-id=\\\"b9d30a3\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"icon-list.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t<ul class=\\\"elementor-icon-list-items\\\">\\n\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Adult Day Service<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Home Care<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t\\t\\t<li class=\\\"elementor-icon-list-item\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<a href=\\\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\\\">\\n\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-icon\\\">\\n\\t\\t\\t\\t\\t\\t\\t<svg aria-hidden=\\\"true\\\" class=\\\"e-font-icon-svg e-fas-angle-double-right\\\" viewBox=\\\"0 0 448 512\\\" xmlns=\\\"http:\\/\\/www.w3.org\\/2000\\/svg\\\"><path d=\\\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\\\"><\\/path><\\/svg>\\t\\t\\t\\t\\t\\t<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<span class=\\\"elementor-icon-list-text\\\">Transportation<\\/span>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/li>\\n\\t\\t\\t\\t\\t\\t<\\/ul>\\n\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-297ac11 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"297ac11\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;background_background&quot;:&quot;classic&quot;}\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-5ca684a9 elementor-widget elementor-widget-heading\\\" data-id=\\\"5ca684a9\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"elementor-heading-title elementor-size-default\\\">\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a><\\/span>\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(10142, 1057, '_wp_page_template', 'elementor_header_footer'),
(10122, 1055, '_wp_page_template', 'elementor_header_footer'),
(10123, 1055, '_elementor_edit_mode', 'builder'),
(10124, 1055, '_elementor_template_type', 'wp-page'),
(10125, 1055, '_elementor_version', '3.35.0'),
(10126, 1055, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10127, 1055, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9774, 1019, '_elementor_page_settings', 'a:0:{}'),
(9777, 1020, '_wp_page_template', 'elementor_header_footer'),
(9778, 1020, '_elementor_edit_mode', 'builder'),
(9779, 1020, '_elementor_template_type', 'wp-page'),
(9780, 1020, '_elementor_version', '3.35.0'),
(9781, 1020, '_elementor_pro_version', '3.35.0'),
(9782, 1020, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\"}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(9784, 1020, '_elementor_page_settings', 'a:0:{}'),
(10822, 1119, '_elementor_template_type', 'wp-page'),
(9787, 1021, '_wp_page_template', 'elementor_header_footer'),
(9788, 1021, '_elementor_edit_mode', 'builder'),
(9789, 1021, '_elementor_template_type', 'wp-page'),
(9790, 1021, '_elementor_version', '3.35.0'),
(9791, 1021, '_elementor_pro_version', '3.35.0'),
(9792, 1021, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10802, 1117, '_wp_page_template', 'elementor_header_footer'),
(10803, 1117, '_elementor_edit_mode', 'builder'),
(10804, 1117, '_elementor_template_type', 'wp-page'),
(10805, 1117, '_elementor_version', '3.35.0'),
(10806, 1117, '_elementor_pro_version', '3.35.0'),
(10807, 1117, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(9801, 1022, '_elementor_edit_mode', 'builder'),
(9802, 1022, '_wp_page_template', 'elementor_header_footer'),
(9803, 1022, '_elementor_template_type', 'wp-page'),
(9804, 1022, '_elementor_version', '3.35.0'),
(9805, 1022, '_elementor_pro_version', '3.35.0'),
(9806, 1022, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9808, 1022, '_elementor_page_settings', 'a:0:{}'),
(9809, 1022, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(9819, 1023, '_elementor_page_settings', 'a:0:{}'),
(9822, 1024, '_wp_page_template', 'elementor_header_footer'),
(9823, 1024, '_elementor_edit_mode', 'builder'),
(9824, 1024, '_elementor_template_type', 'wp-page'),
(9825, 1024, '_elementor_version', '3.35.0'),
(9826, 1024, '_elementor_pro_version', '3.35.0'),
(9827, 1024, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans & Treatments\\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9829, 1024, '_elementor_page_settings', 'a:0:{}'),
(9833, 1025, '_elementor_edit_mode', 'builder'),
(9834, 1025, '_elementor_template_type', 'wp-page'),
(9835, 1025, '_elementor_version', '3.35.0'),
(9836, 1025, '_elementor_pro_version', '3.35.0'),
(9837, 1025, '_elementor_data', '[{\"id\":\"71b9f14\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"3de0b53\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"7deb46a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"394b9c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"281b1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Care Plans \\n\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3a7aa7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(9852, 1026, '_elementor_page_settings', 'a:0:{}'),
(9855, 1027, '_wp_page_template', 'elementor_header_footer'),
(9856, 1027, '_elementor_edit_mode', 'builder'),
(9857, 1027, '_elementor_template_type', 'wp-page'),
(9858, 1027, '_elementor_version', '3.35.0'),
(9859, 1027, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9860, 1027, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9862, 1027, '_elementor_page_settings', 'a:0:{}'),
(9866, 1028, '_elementor_edit_mode', 'builder'),
(9867, 1028, '_elementor_template_type', 'wp-page'),
(9868, 1028, '_elementor_version', '3.35.0'),
(9869, 1028, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9870, 1028, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11144, 1145, '_wp_page_template', 'elementor_header_footer'),
(11124, 1143, '_wp_page_template', 'elementor_header_footer'),
(11125, 1143, '_elementor_edit_mode', 'builder'),
(11126, 1143, '_elementor_template_type', 'wp-page'),
(11127, 1143, '_elementor_version', '3.35.0'),
(11128, 1143, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11129, 1143, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(9885, 1029, '_elementor_page_settings', 'a:0:{}'),
(9888, 1030, '_wp_page_template', 'elementor_header_footer'),
(9889, 1030, '_elementor_edit_mode', 'builder'),
(9890, 1030, '_elementor_template_type', 'wp-page'),
(9891, 1030, '_elementor_version', '3.35.0'),
(9892, 1030, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9893, 1030, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans-and-treatments\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9895, 1030, '_elementor_page_settings', 'a:0:{}'),
(9899, 1031, '_elementor_edit_mode', 'builder'),
(9900, 1031, '_elementor_template_type', 'wp-page'),
(9901, 1031, '_elementor_version', '3.35.0'),
(9902, 1031, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9903, 1031, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11107, 1142, '_wp_page_template', 'elementor_header_footer'),
(11087, 1140, '_wp_page_template', 'elementor_header_footer'),
(11088, 1140, '_elementor_edit_mode', 'builder'),
(11089, 1140, '_elementor_template_type', 'wp-page'),
(11090, 1140, '_elementor_version', '3.35.5'),
(11091, 1140, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11092, 1140, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10554, 1096, '_wp_page_template', 'elementor_header_footer'),
(10535, 1094, '_elementor_edit_mode', 'builder'),
(10536, 1094, '_elementor_template_type', 'wp-page'),
(10537, 1094, '_elementor_version', '3.35.0'),
(10538, 1094, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10539, 1094, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9918, 1032, '_elementor_page_settings', 'a:0:{}'),
(9921, 1033, '_wp_page_template', 'elementor_header_footer'),
(9922, 1033, '_elementor_edit_mode', 'builder'),
(9923, 1033, '_elementor_template_type', 'wp-page'),
(9924, 1033, '_elementor_version', '3.35.0'),
(9925, 1033, '_elementor_pro_version', '3.35.0'),
(9926, 1033, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9928, 1033, '_elementor_page_settings', 'a:0:{}'),
(9931, 1034, '_wp_page_template', 'elementor_header_footer'),
(9932, 1034, '_elementor_edit_mode', 'builder'),
(9933, 1034, '_elementor_template_type', 'wp-page'),
(9934, 1034, '_elementor_version', '3.35.0'),
(9935, 1034, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9936, 1034, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89dc59c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Health Care Community\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust. \",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9957, 1036, '_elementor_page_settings', 'a:0:{}'),
(9959, 1037, '_elementor_edit_mode', 'builder'),
(9960, 1037, '_elementor_template_type', 'wp-page'),
(9961, 1037, '_elementor_version', '3.35.0'),
(9962, 1037, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(9963, 1037, '_elementor_data', '[{\"id\":\"919c07f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"feea9aa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4c22d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"de6594a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1447e90\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"866ebf9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5311621\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"de9789a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"4fcb079\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/active-a.jpg\",\"id\":416,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b7b286\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1194ef0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amenities Provided\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e8373ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Full-Size Commercial Kitchen\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"38756bb\"},{\"text\":\"Dining Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4054854\"},{\"text\":\"Game Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"801c172\"},{\"text\":\"Mini Gym\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2d55721\"},{\"text\":\"TV and Computer Room\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"559580b\"},{\"text\":\"Outdoor Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4831003\"},{\"text\":\"Praying Area\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"8cdacba\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a36af0b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"boxed_width\":{\"unit\":\"px\",\"size\":1048,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"64d690e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c3fa0a0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ebf4de\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"267e334\"}]},\"elements\":[{\"id\":\"107e81a\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"zoomIn\"},\"elements\":[{\"id\":\"1a0965d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Benefits\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"5442863\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1208a65\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ec8e20\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"980ea25\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e618628\"}],\"pp_display_conditions\":[{\"_id\":\"a347097\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"f0dbe44\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"\",\"_id\":\"0183544\",\"subtitle\":\"\",\"description\":\"<p>Providing a safe and engaging environment for seniors to thrive and socialize.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/social-life_18367807.svg\",\"id\":426},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"\",\"subtitle\":\"\",\"description\":\"<p>Offering peace of mind to families with compassionate, professional care.<\\/p>\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/empathy_10966139.svg\",\"id\":431},\"library\":\"svg\"},\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"7a0de4c\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"info_box_border_color\":\"#F1DAD2\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"fadc98a\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_border_color\":\"\",\"icon_bg_color_normal\":\"globals\\/colors?id=astglobalcolor0\",\"icon_color_normal\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d71f947\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0c1e175\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5a4af1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care Center \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"89dc59c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Health Care Community\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ba29aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story \",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e48174f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Community Center,<\\/strong> we believe every adult deserves to feel valued, respected, and connected.<\\/p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment \\u2014 while families gain peace of mind. We are more than an adult day program. We are a <strong>community<\\/strong> built on kindness, dignity, and meaningful relationships.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dde778a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Mission\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"4ab8bc5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"549435b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>To provide compassionate, high-quality Oasis Health Care Community that promote independence, connection, and overall well-being \\u2014 while supporting families with dependable care they can trust.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"44cf2af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"30c98f3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"bfe3c4a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-ah.jpg\",\"id\":773,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e98e6fa\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6ef233c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"f9af2cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Approach-to-Care-a.jpg\",\"id\":798,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9d9ca7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"ff36b4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Approach to Care \",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92b587\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We focus on the whole person, not just daily needs.<br \\/><strong>At Oasis, we offer:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"946e665\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A warm, family-focused environment\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Engaging daily activities that support cognitive and social well-being\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1ee716\"},{\"text\":\"Health and wellness support, including medication administration, reminders and monitoring\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"896f012\"},{\"text\":\"Nutritious meals and structured programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7edbdf2\"},{\"text\":\"Reliable transportation for added convenience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"1350c36\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"123214e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"41b0190\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5f06b0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8888239\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2fea470\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"259442f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9fe56fc\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"cc50afd\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"11825e8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"9faec10\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"168ab8f\"}],\"pp_display_conditions\":[{\"_id\":\"a150c95\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"07572ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team \",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"15f59dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e640795\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b87493f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value:\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"187a10d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0518e8f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Compassion\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Patience\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"89ba9a2\"},{\"text\":\"Professionalism \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"af216e3\"},{\"text\":\"Respect for families and participants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9b6fe78\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45ca26e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f74d712\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"076c937\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"eb9df04\"}],\"pp_display_conditions\":[{\"_id\":\"44cd78b\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"045a5e3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Our-Team-afm.jpg\",\"id\":809,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd57252\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2a69a39\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"5eba920\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1b0235f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Thornton Location \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9892f13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Oasis Adult Day Service<\\/strong> \\u2013 <strong>Thornton<\\/strong> proudly serves families in metro Denver and surrounding areas.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45c16e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Monday\\u2013Friday, 8 \\u2013 5PM\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/clock_16087624.svg\",\"id\":816},\"library\":\"svg\"},\"_id\":\"abfa86c\"},{\"text\":\"Transportation available \",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/truck_10044945.svg\",\"id\":818},\"library\":\"svg\"},\"_id\":\"5a3bf44\"}],\"space_between\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"icon_align\":\"center\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"ac081d1\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"494b4d6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7f9cd63\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0ec7743\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ef9308c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1b72418\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b15ab22\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3543f52\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7ddaf6d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3a29440\"}],\"pp_display_conditions\":[{\"_id\":\"4e3898d\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"6484f60\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Why-Families-Choose-Oasis-av.jpg\",\"id\":828,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"552c63b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"527778b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7362b3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a2db4ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"aa689c9\"}],\"pp_display_conditions\":[{\"_id\":\"f31764d\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"5491dd0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Families Choose Oasis\",\"pp_display_conditions\":[{\"_id\":\"7a250ae\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d786e5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"A welcoming, home-like environment \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Experienced and caring staff \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"488ee57\"},{\"text\":\"Engaging and meaningful daily programs \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b1323cd\"},{\"text\":\" Clear communication with families\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"be2c5f1\"},{\"text\":\"Optional transportation services \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"df6d82e\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:47\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"216ad7e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ebb94c5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"ecbf4b5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2828194\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"f003319\"}],\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"7c3b936\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"914a3f0\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c21e351\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bb287e\"}],\"pp_display_conditions\":[{\"_id\":\"6ed4ec2\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5348c7f\",\"elType\":\"widget\",\"settings\":{\"title\":\"We\\u2019d love to meet you. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"0f412f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d1c204\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>Schedule a Tour<\\/strong> or <strong>Contact Us <\\/strong>to learn more about Oasis Health Care Community.\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"82cd6bd\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"256170a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e45621c\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(9965, 14, '_elementor_page_settings', 'a:0:{}'),
(9966, 14, '_elementor_controls_usage', 'a:7:{s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:6;s:10:\"image_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:6;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:6;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:14:\"flex_direction\";i:21;s:13:\"content_width\";i:16;s:5:\"width\";i:12;s:20:\"flex_justify_content\";i:6;s:8:\"flex_gap\";i:6;s:11:\"boxed_width\";i:1;}}s:5:\"style\";a:2:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:25;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:5;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:25;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:16;s:18:\"animation_duration\";i:4;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:9;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:3;s:12:\"hide_desktop\";i:3;s:17:\"hide_tablet_extra\";i:3;s:11:\"hide_tablet\";i:3;s:17:\"hide_mobile_extra\";i:3;s:11:\"hide_mobile\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:13;s:11:\"header_size\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:13;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_responsive\";a:6:{s:15:\"hide_widescreen\";i:1;s:12:\"hide_desktop\";i:1;s:17:\"hide_tablet_extra\";i:1;s:11:\"hide_tablet\";i:1;s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:5;s:4:\"view\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:5;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:3:{s:24:\"icon_self_vertical_align\";i:5;s:20:\"icon_vertical_offset\";i:5;s:9:\"icon_size\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:4:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:7:\"columns\";i:1;s:20:\"columns_mobile_extra\";i:1;}}s:5:\"style\";a:2:{s:22:\"section_info_box_style\";a:5:{s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:21:\"info_box_border_color\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}s:27:\"section_info_box_icon_style\";a:3:{s:9:\"icon_size\";i:1;s:18:\"icon_border_radius\";i:1;s:12:\"icon_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(11362, 594, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:7:{i:0;s:12:\"widget-image\";i:1;s:16:\"widget-icon-list\";i:2;s:14:\"widget-heading\";i:3;s:16:\"widget-post-info\";i:4;s:26:\"elementor-icons-fa-regular\";i:5;s:24:\"elementor-icons-fa-solid\";i:6;s:22:\"widget-post-navigation\";}s:7:\"scripts\";a:2:{i:0;s:18:\"elementor-frontend\";i:1;s:15:\"post-navigation\";}}'),
(11363, 566, '_elementor_page_assets', 'a:0:{}'),
(11364, 594, '_elementor_css', 'a:6:{s:4:\"time\";i:1771530646;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:3:{i:0;s:8:\"5f9a5480\";i:1;s:7:\"7ee3fd0\";i:2;s:8:\"51387410\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),
(11365, 594, '_elementor_element_cache', '{\"timeout\":1771617047,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-34607fab e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"34607fab\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjVmOWE1NDgwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJfX2R5bmFtaWNfXyI6eyJpbWFnZSI6IltlbGVtZW50b3ItdGFnIGlkPVwiXCIgbmFtZT1cInBvc3QtZmVhdHVyZWQtaW1hZ2VcIiBzZXR0aW5ncz1cIiU3QiUyMmZhbGxiYWNrJTIyJTNBJTdCJTIydXJsJTIyJTNBJTIyJTIyJTJDJTIyaWQlMjIlM0ElMjIlMjIlMkMlMjJzaXplJTIyJTNBJTIyJTIyJTdEJTdEXCJdIn0sInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiZDZmZDVmZSIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNi0wMi0wOCAwOTozNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiaW1hZ2UiOnsiaWQiOiIiLCJ1cmwiOiJodHRwczpcL1wvbXJhcmlmLm1lXC9vYXNpc1wvd3AtY29udGVudFwvcGx1Z2luc1wvZWxlbWVudG9yXC9hc3NldHNcL2ltYWdlc1wvcGxhY2Vob2xkZXIucG5nIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0aGVtZS1wb3N0LWZlYXR1cmVkLWltYWdlIn0=\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjdlZTNmZDAiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJpY29uX2xpc3QiOlt7InRleHQiOiJMaXN0IEl0ZW0gIzEiLCJzZWxlY3RlZF9pY29uIjp7InZhbHVlIjoiIiwibGlicmFyeSI6IiJ9LCJfaWQiOiJiYzVjNjQxIiwiX19keW5hbWljX18iOnsidGV4dCI6IltlbGVtZW50b3ItdGFnIGlkPVwiZTg3NjRhZlwiIG5hbWU9XCJwb3N0LXRlcm1zXCIgc2V0dGluZ3M9XCIlN0IlMjJ0YXhvbm9teSUyMiUzQSUyMmNhdGVnb3J5JTIyJTJDJTIyc2VwYXJhdG9yJTIyJTNBJTIyJTJDJTIwJTIyJTdEXCJdIn19XSwicHBfZGlzcGxheV9jb25kaXRpb25zIjpbeyJfaWQiOiI3NDNhM2YwIn1dLCJwcF9lbGVtZW50c190b29sdGlwX2NvbnRlbnQiOiJUb29sdGlwIENvbnRlbnQiLCJfX2dsb2JhbHNfXyI6eyJpY29uX2NvbG9yIjoiZ2xvYmFsc1wvY29sb3JzP2lkPWFzdGdsb2JhbGNvbG9yMiIsInRleHRfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IyIiwidGV4dF9jb2xvcl9ob3ZlciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6Imljb24tbGlzdCJ9\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjUxMzg3NDEwIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJfX2R5bmFtaWNfXyI6eyJ0aXRsZSI6IltlbGVtZW50b3ItdGFnIGlkPVwiXCIgbmFtZT1cInBvc3QtdGl0bGVcIiBzZXR0aW5ncz1cIiU3QiUyMmJlZm9yZSUyMiUzQSUyMiUyMiUyQyUyMmFmdGVyJTIyJTNBJTIyJTIyJTJDJTIyZmFsbGJhY2slMjIlM0ElMjIlMjIlN0RcIl0ifSwidGl0bGUiOiJBZGQgWW91ciBIZWFkaW5nIFRleHQgSGVyZSIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiMDEwZmRmNiIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNi0wMi0wOCAwOTozNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiaGVhZGVyX3NpemUiOiJoMiJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0aGVtZS1wb3N0LXRpdGxlIn0=\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjZiMzRiNGZhIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJpY29uX2xpc3QiOlt7InNlbGVjdGVkX2ljb24iOnsidmFsdWUiOiJmYXMgZmEtY2FsZW5kYXIiLCJsaWJyYXJ5IjoiZmEtc29saWQifSwiX2lkIjoiMWMxOGQyOCIsImN1c3RvbV9kYXRlX2Zvcm1hdCI6IkYgaiwgWSIsImN1c3RvbV90aW1lX2Zvcm1hdCI6Imc6aSBhIn1dLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6IjYzNmI5NTgiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDItMDggMDk6MzcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCIsIl9fZ2xvYmFsc19fIjp7Imljb25fY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIiwidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEifX0sImVsZW1lbnRzIjpbXSwid2lkZ2V0VHlwZSI6InBvc3QtaW5mbyJ9\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjI4NTdkMWE4IiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImJhMWUzMDQiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDItMDggMDk6MzcifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0aGVtZS1wb3N0LWNvbnRlbnQifQ==\\\"][elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6IjVkOWJiYzdiIiwiZWxUeXBlIjoid2lkZ2V0Iiwic2V0dGluZ3MiOnsiY29udGVudF93aWR0aCI6ImZ1bGwiLCJwcmV2X2xhYmVsIjoiUHJldmlvdXMiLCJuZXh0X2xhYmVsIjoiTmV4dCIsInBwX2Rpc3BsYXlfY29uZGl0aW9ucyI6W3siX2lkIjoiOTQ5NmM3ZiIsInBwX2NvbmRpdGlvbl9kYXRlX3RpbWVfYmVmb3JlX3ZhbHVlIjoiMjAyNi0wMi0wOCAwOTozNyJ9XSwicHBfZWxlbWVudHNfdG9vbHRpcF9jb250ZW50IjoiVG9vbHRpcCBDb250ZW50IiwiX19nbG9iYWxzX18iOnsibGFiZWxfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IwIiwidGV4dF9jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJhcnJvd19jb2xvciI6Imdsb2JhbHNcL2NvbG9ycz9pZD1hc3RnbG9iYWxjb2xvcjEiLCJzZXBfY29sb3IiOiJnbG9iYWxzXC9jb2xvcnM\\/aWQ9YXN0Z2xvYmFsY29sb3IxIn19LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJwb3N0LW5hdmlnYXRpb24ifQ==\\\"]\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(11366, 563, '_elementor_page_assets', 'a:0:{}'),
(11367, 560, '_elementor_page_assets', 'a:0:{}'),
(11368, 569, '_elementor_page_assets', 'a:0:{}'),
(11369, 356, '_elementor_page_assets', 'a:2:{s:6:\"styles\";a:4:{i:0;s:12:\"widget-image\";i:1;s:22:\"e-animation-fadeInLeft\";i:2;s:14:\"widget-heading\";i:3;s:23:\"e-animation-fadeInRight\";}s:7:\"scripts\";a:1:{i:0;s:18:\"elementor-frontend\";}}'),
(11370, 356, '_elementor_css', 'a:6:{s:4:\"time\";i:1771555620;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11371, 356, '_elementor_element_cache', '{\"timeout\":1771642020,\"value\":{\"content\":\"<div class=\\\"elementor-element elementor-element-db7bdf8 e-flex e-con-boxed e-con e-parent\\\" data-id=\\\"db7bdf8\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\">\\n\\t\\t\\t\\t\\t<div class=\\\"e-con-inner\\\">\\n\\t\\t<div class=\\\"elementor-element elementor-element-6ff3c00 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"6ff3c00\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInLeft&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-844d006 elementor-widget elementor-widget-image\\\" data-id=\\\"844d006\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"image.default\\\">\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<img width=\\\"1000\\\" height=\\\"667\\\" src=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\\\" class=\\\"attachment-full size-full wp-image-1139\\\" alt=\\\"\\\" srcset=\\\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp 1000w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1-300x200.webp 300w, https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1-768x512.webp 768w\\\" sizes=\\\"(max-width: 1000px) 100vw, 1000px\\\" \\/>\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t<div class=\\\"elementor-element elementor-element-7b8e571 e-con-full e-flex elementor-invisible e-con e-child\\\" data-id=\\\"7b8e571\\\" data-element_type=\\\"container\\\" data-e-type=\\\"container\\\" data-settings=\\\"{&quot;animation&quot;:&quot;fadeInRight&quot;}\\\">\\n\\t\\t\\t\\t<div class=\\\"elementor-element elementor-element-33d9ed7 elementor-widget elementor-widget-heading\\\" data-id=\\\"33d9ed7\\\" data-element_type=\\\"widget\\\" data-e-type=\\\"widget\\\" data-widget_type=\\\"heading.default\\\">\\n\\t\\t\\t\\t\\t<h2 class=\\\"elementor-heading-title elementor-size-default\\\">Personal Caregiving<\\/h2>\\t\\t\\t\\t<\\/div>\\n\\t\\t[elementor-element k=\\\"81268f9a0342b61453e51ca389144e8c\\\" data=\\\"eyJpZCI6ImRhZjUyYWIiLCJlbFR5cGUiOiJ3aWRnZXQiLCJzZXR0aW5ncyI6eyJlZGl0b3IiOiI8cD5Db21wYXNzaW9uYXRlIGFzc2lzdGFuY2Ugd2l0aCBhY3Rpdml0aWVzIG9mIGRhaWx5IGxpdmluZyBzdWNoIGFzIGdyb29taW5nLCB0b2lsZXRpbmcsIGRyZXNzaW5nLCBtb2JpbGl0eSwgYW5kIGh5Z2llbmUsIGRlbGl2ZXJlZCB3aXRoIGRpZ25pdHkgYW5kIHJlc3BlY3QuPFwvcD4iLCJwcF9kaXNwbGF5X2NvbmRpdGlvbnMiOlt7Il9pZCI6ImZhMmE3NzAiLCJwcF9jb25kaXRpb25fZGF0ZV90aW1lX2JlZm9yZV92YWx1ZSI6IjIwMjYtMDItMDggMDc6MjMifV0sInBwX2VsZW1lbnRzX3Rvb2x0aXBfY29udGVudCI6IlRvb2x0aXAgQ29udGVudCJ9LCJlbGVtZW50cyI6W10sIndpZGdldFR5cGUiOiJ0ZXh0LWVkaXRvciJ9\\\"]\\t\\t<\\/div>\\n\\t\\t\\t\\t\\t<\\/div>\\n\\t\\t\\t\\t<\\/div>\\n\\t\\t\",\"scripts\":[],\"styles\":[]}}'),
(9969, 35, '_wp_old_date', '2026-02-09'),
(9970, 31, '_wp_old_date', '2026-02-09'),
(9971, 38, '_wp_old_date', '2026-02-09'),
(9972, 366, '_wp_old_date', '2026-02-09'),
(9973, 365, '_wp_old_date', '2026-02-09'),
(9974, 364, '_wp_old_date', '2026-02-09'),
(9975, 363, '_wp_old_date', '2026-02-09'),
(9976, 362, '_wp_old_date', '2026-02-09'),
(9977, 361, '_wp_old_date', '2026-02-09'),
(9978, 987, '_wp_old_date', '2026-02-09'),
(9979, 36, '_wp_old_date', '2026-02-09'),
(9980, 695, '_wp_old_date', '2026-02-09'),
(9981, 360, '_wp_old_date', '2026-02-09'),
(9982, 37, '_wp_old_date', '2026-02-09'),
(9983, 33, '_wp_old_date', '2026-02-09'),
(9984, 968, '_wp_old_date', '2026-02-09'),
(9985, 32, '_wp_old_date', '2026-02-09'),
(9986, 34, '_wp_old_date', '2026-02-09'),
(9987, 631, '_wp_old_date', '2026-02-09'),
(9988, 1039, '_edit_last', '1'),
(9989, 1039, '_wp_page_template', 'default'),
(9990, 1039, 'site-sidebar-layout', 'no-sidebar'),
(9995, 1039, 'theme-transparent-header-meta', 'default'),
(9992, 1039, 'ast-site-content-layout', 'full-width-container'),
(9993, 1039, 'site-content-style', 'default'),
(9994, 1039, 'site-sidebar-style', 'default'),
(9996, 1039, 'astra-migrate-meta-layouts', 'set'),
(9997, 1039, '_edit_lock', '1771486438:1'),
(10012, 1039, 'ast-featured-img', 'disabled'),
(10011, 1039, 'ast-title-bar-display', 'disabled'),
(10010, 1039, 'site-post-title', 'disabled'),
(10009, 1039, '_astra_content_layout_flag', 'disabled'),
(10008, 1039, '_elementor_edit_mode', 'builder'),
(10013, 1039, '_elementor_template_type', 'wp-page'),
(10041, 1039, '_elementor_data', '[{\"id\":\"c259c0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}]},\"elements\":[{\"id\":\"a30488c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5701330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\",\"id\":567,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9d5ab3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"e18c40b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af0aa04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10040, 1039, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(10021, 1043, '_menu_item_type', 'post_type'),
(10022, 1043, '_menu_item_menu_item_parent', '36'),
(10023, 1043, '_menu_item_object_id', '1039'),
(10024, 1043, '_menu_item_object', 'page'),
(10025, 1043, '_menu_item_target', ''),
(10026, 1043, '_menu_item_classes', 'a:1:{i:0;s:0:\"\";}'),
(10027, 1043, '_menu_item_xfn', ''),
(10028, 1043, '_menu_item_url', ''),
(10030, 1044, '_wp_page_template', 'elementor_header_footer'),
(10032, 1044, '_elementor_edit_mode', 'builder'),
(10033, 1044, '_elementor_template_type', 'wp-page'),
(10035, 1045, '_wp_page_template', 'elementor_header_footer'),
(10037, 1045, '_elementor_edit_mode', 'builder'),
(10038, 1045, '_elementor_template_type', 'wp-page'),
(10042, 1046, '_wp_page_template', 'default'),
(10044, 1046, '_elementor_edit_mode', 'builder'),
(10045, 1046, '_elementor_template_type', 'wp-page'),
(10047, 1046, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(10048, 1046, '_elementor_data', '[{\"id\":\"c259c0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}]},\"elements\":[{\"id\":\"a30488c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5701330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9d5ab3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"e18c40b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af0aa04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10049, 1039, '_elementor_version', '3.35.0'),
(10050, 1039, '_elementor_pro_version', '3.35.0'),
(10697, 1109, '_wp_page_template', 'default'),
(10699, 1109, '_elementor_edit_mode', 'builder'),
(10700, 1109, '_elementor_template_type', 'wp-page'),
(10701, 1109, '_elementor_page_settings', 'a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),
(10702, 1109, '_elementor_data', '[{\"id\":\"c259c0c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}]},\"elements\":[{\"id\":\"a30488c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"5701330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"c9d5ab3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"e18c40b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"af0aa04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-17 07:54\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10727, 1039, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10054, 1047, '_wp_attached_file', '2026/02/Oasis-Adult-Day-Care-ah.jpg'),
(10055, 1047, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:35:\"2026/02/Oasis-Adult-Day-Care-ah.jpg\";s:8:\"filesize\";i:92189;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Oasis-Adult-Day-Care-ah-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19709;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Oasis-Adult-Day-Care-ah-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9018;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Oasis-Adult-Day-Care-ah-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85503;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10063, 1048, '_elementor_page_settings', 'a:0:{}'),
(10066, 1049, '_wp_page_template', 'elementor_header_footer'),
(10067, 1049, '_elementor_edit_mode', 'builder'),
(10068, 1049, '_elementor_template_type', 'wp-page'),
(10069, 1049, '_elementor_version', '3.35.0'),
(10070, 1049, '_elementor_pro_version', '3.35.0'),
(10071, 1049, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10073, 1049, '_elementor_page_settings', 'a:0:{}'),
(10077, 1050, '_elementor_edit_mode', 'builder'),
(10078, 1050, '_elementor_template_type', 'wp-page'),
(10079, 1050, '_elementor_version', '3.35.0'),
(10080, 1050, '_elementor_pro_version', '3.35.0'),
(10081, 1050, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-ah.jpg\",\"id\":1047,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11329, 291, '_elementor_page_settings', 'a:0:{}'),
(11330, 291, '_elementor_controls_usage', 'a:7:{s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:4:\"view\";i:2;s:9:\"icon_list\";i:2;s:10:\"link_click\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:3:{s:23:\"icon_align_mobile_extra\";i:2;s:17:\"icon_align_tablet\";i:2;s:10:\"icon_align\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:7:{s:20:\"flex_justify_content\";i:4;s:14:\"flex_direction\";i:4;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:16:\"flex_align_items\";i:1;s:8:\"flex_gap\";i:2;s:10:\"min_height\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:7;}s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:33:\"background_overlay_gradient_angle\";i:1;s:26:\"background_overlay_opacity\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_color_b\";i:1;}}s:8:\"advanced\";a:4:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:21:\"pp_display_conditions\";i:7;s:28:\"pp_display_conditions_enable\";i:1;}s:14:\"section_layout\";a:5:{s:7:\"padding\";i:3;s:7:\"z_index\";i:2;s:6:\"margin\";i:1;s:11:\"css_classes\";i:1;s:20:\"e_display_conditions\";i:1;}s:19:\"_section_responsive\";a:2:{s:17:\"hide_mobile_extra\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:6:\"sticky\";i:1;s:21:\"sticky_effects_offset\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;s:7:\"link_to\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:1;s:5:\"space\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:16:\"pp-advanced-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:4:{s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;s:9:\"menu_type\";i:1;s:12:\"toggle_align\";i:1;}}s:5:\"style\";a:5:{s:23:\"section_style_main_menu\";a:6:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:22:\"color_menu_item_active\";i:1;s:28:\"padding_horizontal_menu_item\";i:1;s:26:\"padding_vertical_menu_item\";i:1;s:18:\"menu_space_between\";i:1;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:26:\"color_dropdown_item_active\";i:1;s:37:\"background_color_dropdown_item_active\";i:1;s:23:\"dropdown_divider_border\";i:1;s:22:\"dropdown_divider_width\";i:1;s:22:\"dropdown_divider_color\";i:1;}s:12:\"style_toggle\";a:4:{s:12:\"toggle_color\";i:1;s:23:\"toggle_background_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:29:\"toggle_background_color_hover\";i:1;}s:16:\"style_responsive\";a:13:{s:18:\"offcanvas_position\";i:1;s:16:\"overlay_bg_color\";i:1;s:17:\"mobile_link_color\";i:1;s:24:\"mobile_sub_link_bg_color\";i:1;s:21:\"mobile_sub_link_color\";i:1;s:17:\"mobile_link_hover\";i:1;s:20:\"mobile_link_bg_hover\";i:1;s:24:\"mobile_sub_link_bg_hover\";i:1;s:21:\"mobile_sub_link_hover\";i:1;s:16:\"close_icon_color\";i:1;s:27:\"close_icon_background_color\";i:1;s:33:\"close_icon_background_color_hover\";i:1;s:22:\"close_icon_color_hover\";i:1;}s:16:\"style_typography\";a:6:{s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;s:31:\"dropdown_typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:16:\"theme-page-title\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:2:{s:28:\"pp_display_conditions_enable\";i:1;s:21:\"pp_display_conditions\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}}'),
(11217, 1152, '_wp_page_template', 'elementor_header_footer'),
(11197, 1150, '_wp_page_template', 'elementor_header_footer'),
(11198, 1150, '_elementor_edit_mode', 'builder'),
(11199, 1150, '_elementor_template_type', 'wp-page'),
(11200, 1150, '_elementor_version', '3.35.0'),
(11201, 1150, '_elementor_pro_version', '3.35.0'),
(11202, 1150, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10096, 1051, '_elementor_page_settings', 'a:0:{}'),
(10099, 1052, '_wp_page_template', 'elementor_header_footer'),
(10100, 1052, '_elementor_edit_mode', 'builder'),
(10101, 1052, '_elementor_template_type', 'wp-page'),
(10102, 1052, '_elementor_version', '3.35.0'),
(10103, 1052, '_elementor_pro_version', '3.35.0'),
(10104, 1052, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10106, 1052, '_elementor_page_settings', 'a:0:{}'),
(10820, 1119, '_wp_page_template', 'elementor_header_footer'),
(10109, 1053, '_wp_page_template', 'elementor_header_footer'),
(10110, 1053, '_elementor_edit_mode', 'builder'),
(10111, 1053, '_elementor_template_type', 'wp-page'),
(10112, 1053, '_elementor_version', '3.35.0'),
(10113, 1053, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10114, 1053, '_elementor_data', '[{\"id\":\"e48c199\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"a177d6e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cbb0f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"912686e\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"af8db9d\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:36\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false}]'),
(10129, 1055, '_elementor_page_settings', 'a:0:{}'),
(11322, 1164, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11323, 1164, '_elementor_screenshot_failed', '2026-02-14 06:06:33'),
(10132, 1056, '_wp_page_template', 'elementor_header_footer'),
(10133, 1056, '_elementor_edit_mode', 'builder'),
(10134, 1056, '_elementor_template_type', 'wp-page'),
(10135, 1056, '_elementor_version', '3.35.0'),
(10136, 1056, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10137, 1056, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10139, 1056, '_elementor_page_settings', 'a:0:{}'),
(11309, 12, '_elementor_page_settings', 'a:0:{}'),
(11310, 12, '_elementor_controls_usage', 'a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:7;s:11:\"header_size\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:5:\"align\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:11;s:4:\"link\";i:11;s:13:\"selected_icon\";i:6;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:11;}s:14:\"_section_style\";a:3:{s:16:\"_flex_align_self\";i:1;s:7:\"_margin\";i:6;s:8:\"_padding\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:9;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:16:\"background_color\";i:6;s:13:\"border_radius\";i:6;s:12:\"text_padding\";i:6;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:33;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:8:{s:13:\"content_width\";i:26;s:5:\"width\";i:19;s:11:\"boxed_width\";i:2;s:14:\"flex_direction\";i:16;s:10:\"min_height\";i:1;s:20:\"flex_justify_content\";i:4;s:8:\"flex_gap\";i:5;s:9:\"flex_wrap\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:4:\"link\";i:1;}}s:5:\"style\";a:4:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:33;}s:18:\"section_background\";a:6:{s:21:\"background_background\";i:12;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:21:\"background_attachment\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:2;s:26:\"background_overlay_opacity\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:13;s:13:\"border_border\";i:9;s:12:\"border_width\";i:9;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:33;}s:14:\"section_layout\";a:3:{s:6:\"margin\";i:1;s:7:\"padding\";i:20;s:11:\"css_classes\";i:8;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:22;s:18:\"animation_duration\";i:21;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:6:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"sub_title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;s:20:\"columns_mobile_extra\";i:1;}}s:5:\"style\";a:1:{s:22:\"section_info_box_style\";a:5:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_border\";i:1;s:21:\"info_box_border_width\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:9;s:10:\"image_size\";i:9;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:19:\"image_border_radius\";i:9;s:32:\"image_box_shadow_box_shadow_type\";i:1;s:27:\"image_box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:9;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:8;s:4:\"view\";i:2;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:10:\"title_size\";i:8;}}s:5:\"style\";a:2:{s:17:\"section_style_box\";a:3:{s:26:\"content_vertical_alignment\";i:2;s:10:\"text_align\";i:8;s:18:\"title_bottom_space\";i:8;}s:18:\"section_style_icon\";a:2:{s:9:\"icon_size\";i:2;s:12:\"icon_padding\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:4;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:4;s:20:\"icon_vertical_offset\";i:4;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:4;}}}}}'),
(10143, 1057, '_elementor_edit_mode', 'builder'),
(10144, 1057, '_elementor_template_type', 'wp-page'),
(10145, 1057, '_elementor_version', '3.35.0'),
(10146, 1057, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10147, 1057, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10983, 1130, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10979, 1130, '_elementor_edit_mode', 'builder'),
(10980, 1130, '_elementor_template_type', 'wp-page'),
(10981, 1130, '_elementor_version', '3.35.5'),
(10982, 1130, '_elementor_pro_version', '3.35.1'),
(10967, 1128, '_elementor_page_settings', 'a:0:{}'),
(10686, 1108, '_wp_page_template', 'elementor_header_footer'),
(10666, 1106, '_wp_page_template', 'elementor_header_footer'),
(10667, 1106, '_elementor_edit_mode', 'builder'),
(10668, 1106, '_elementor_template_type', 'wp-page'),
(10669, 1106, '_elementor_version', '3.35.0'),
(10670, 1106, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10671, 1106, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10162, 1058, '_elementor_page_settings', 'a:0:{}'),
(10165, 1059, '_wp_page_template', 'elementor_header_footer'),
(10166, 1059, '_elementor_edit_mode', 'builder'),
(10167, 1059, '_elementor_template_type', 'wp-page'),
(10168, 1059, '_elementor_version', '3.35.0'),
(10169, 1059, '_elementor_pro_version', '3.35.0'),
(10170, 1059, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/care-giver-team-a.webp\",\"id\":835,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10172, 1059, '_elementor_page_settings', 'a:0:{}'),
(10177, 1060, '_elementor_template_type', 'wp-page'),
(10178, 1060, '_elementor_version', '3.35.0'),
(10179, 1060, '_elementor_pro_version', '3.35.0'),
(10180, 1060, '_elementor_data', '[{\"id\":\"fdb7475\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"849c782\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7e8d9a1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4f82d95\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"686db70\"}]},\"elements\":[{\"id\":\"e92c63d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1954a06\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"266b09f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"647a5af\"}],\"pp_display_conditions\":[{\"_id\":\"14c727e\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"42cf947\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"dd7552f\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"bd93f21\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dd9eda8\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"b292cb5\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1a9b22\"}],\"pp_display_conditions\":[{\"_id\":\"339f63f\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"99bbd65\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Team\",\"pp_display_conditions\":[{\"_id\":\"bf994b9\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4765162\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"5fdeff5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10188, 1061, '_wp_attached_file', '2026/02/career-ab.webp'),
(10189, 1061, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2026/02/career-ab.webp\";s:8:\"filesize\";i:173462;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"career-ab-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18896;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"career-ab-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8250;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"career-ab-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:57774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10197, 1062, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10201, 1062, '_elementor_screenshot_failed', '2026-02-09 10:59:27'),
(10359, 1077, '_elementor_pro_version', '3.35.0'),
(10360, 1077, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10361, 1077, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"337d47b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"1d90ce3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"5d09dd9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"5175ffd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d69aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f9de76d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"d55d5cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a7855\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283fd5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c330b2b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"067f722\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"cf0ff0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceb5d5f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ddef5f8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2a993ab\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"fb33ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2a378\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4da7397\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(11024, 1134, '_wp_attached_file', '2026/02/career-ab-1.webp'),
(11025, 1134, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2026/02/career-ab-1.webp\";s:8:\"filesize\";i:50084;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"career-ab-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"career-ab-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6830;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"career-ab-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:51744;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10215, 1064, '_elementor_page_settings', 'a:0:{}'),
(11301, 1161, '_elementor_page_settings', 'a:0:{}'),
(11303, 1162, '_elementor_edit_mode', 'builder'),
(11304, 1162, '_elementor_template_type', 'wp-page'),
(11305, 1162, '_elementor_version', '3.35.5'),
(11306, 1162, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11307, 1162, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab-1.webp\",\"id\":1156,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10218, 1065, '_wp_page_template', 'elementor_header_footer'),
(10219, 1065, '_elementor_edit_mode', 'builder'),
(10220, 1065, '_elementor_template_type', 'wp-page'),
(10221, 1065, '_elementor_version', '3.35.0'),
(10222, 1065, '_elementor_pro_version', '3.35.0'),
(10223, 1065, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Careers-ab.jpg\",\"id\":845,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10225, 1065, '_elementor_page_settings', 'a:0:{}'),
(10229, 1066, '_elementor_edit_mode', 'builder'),
(10230, 1066, '_elementor_template_type', 'wp-page'),
(10231, 1066, '_elementor_version', '3.35.0'),
(10232, 1066, '_elementor_pro_version', '3.35.0'),
(10233, 1066, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10969, 1129, '_wp_page_template', 'elementor_header_footer'),
(10970, 1129, '_elementor_edit_mode', 'builder'),
(10971, 1129, '_elementor_template_type', 'wp-page'),
(10972, 1129, '_elementor_version', '3.35.5'),
(10973, 1129, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10974, 1129, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10295, 1072, '_wp_page_template', 'elementor_header_footer'),
(10275, 1070, '_wp_page_template', 'elementor_header_footer'),
(10276, 1070, '_elementor_edit_mode', 'builder'),
(10277, 1070, '_elementor_template_type', 'wp-page'),
(10278, 1070, '_elementor_version', '3.35.0'),
(10279, 1070, '_elementor_pro_version', '3.35.0'),
(10280, 1070, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10248, 1067, '_elementor_page_settings', 'a:0:{}'),
(10251, 1068, '_wp_page_template', 'elementor_header_footer'),
(10252, 1068, '_elementor_edit_mode', 'builder'),
(10253, 1068, '_elementor_template_type', 'wp-page'),
(10254, 1068, '_elementor_version', '3.35.0'),
(10255, 1068, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10256, 1068, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0623a5e\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\" oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasishc23@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(720)600 7270 \",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270 \",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10258, 1068, '_elementor_page_settings', 'a:0:{}'),
(10261, 1069, '_wp_page_template', 'elementor_header_footer'),
(10262, 1069, '_elementor_edit_mode', 'builder'),
(10263, 1069, '_elementor_template_type', 'wp-page'),
(10264, 1069, '_elementor_version', '3.35.0'),
(10265, 1069, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10266, 1069, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10308, 1073, '_wp_page_template', 'elementor_header_footer'),
(10309, 1073, '_elementor_edit_mode', 'builder'),
(10310, 1073, '_elementor_template_type', 'wp-page'),
(10311, 1073, '_elementor_version', '3.35.0'),
(10312, 1073, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10313, 1073, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10282, 1070, '_elementor_page_settings', 'a:0:{}'),
(10285, 1071, '_wp_page_template', 'elementor_header_footer'),
(10286, 1071, '_elementor_edit_mode', 'builder'),
(10287, 1071, '_elementor_template_type', 'wp-page'),
(10288, 1071, '_elementor_version', '3.35.0'),
(10289, 1071, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10290, 1071, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"maito:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10292, 1071, '_elementor_page_settings', 'a:0:{}'),
(10296, 1072, '_elementor_edit_mode', 'builder'),
(10297, 1072, '_elementor_template_type', 'wp-page'),
(10298, 1072, '_elementor_version', '3.35.0'),
(10299, 1072, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10300, 1072, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10976, 1129, '_elementor_page_settings', 'a:0:{}'),
(11064, 1138, '_wp_page_template', 'elementor_header_footer'),
(11044, 1136, '_wp_page_template', 'elementor_header_footer'),
(11045, 1136, '_elementor_edit_mode', 'builder'),
(11046, 1136, '_elementor_template_type', 'wp-page'),
(11047, 1136, '_elementor_version', '3.35.0'),
(11048, 1136, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11049, 1136, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10315, 1073, '_elementor_page_settings', 'a:0:{}'),
(11276, 1159, '_elementor_edit_mode', 'builder'),
(11277, 1159, '_elementor_template_type', 'wp-page'),
(11278, 1159, '_elementor_version', '3.35.5'),
(11279, 1159, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11280, 1159, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab-1.webp\",\"id\":1156,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10318, 1074, '_wp_page_template', 'elementor_header_footer'),
(10319, 1074, '_elementor_edit_mode', 'builder'),
(10320, 1074, '_elementor_template_type', 'wp-page'),
(10321, 1074, '_elementor_version', '3.35.0'),
(10322, 1074, '_elementor_pro_version', '3.35.0'),
(10323, 1074, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}]},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10325, 1074, '_elementor_page_settings', 'a:0:{}'),
(10328, 1075, '_wp_page_template', 'elementor_header_footer'),
(10329, 1075, '_elementor_edit_mode', 'builder'),
(10330, 1075, '_elementor_template_type', 'wp-page'),
(10331, 1075, '_elementor_version', '3.35.0'),
(10332, 1075, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10333, 1075, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10402, 1080, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10403, 1080, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10355, 1077, '_elementor_source', 'post'),
(10356, 1077, '_elementor_edit_mode', 'builder'),
(10357, 1077, '_elementor_template_type', 'footer'),
(10358, 1077, '_elementor_version', '3.35.0'),
(10341, 1076, '_elementor_source', 'post'),
(10342, 1076, '_elementor_edit_mode', 'builder'),
(10343, 1076, '_elementor_template_type', 'footer'),
(10344, 1076, '_elementor_version', '3.35.0'),
(10345, 1076, '_elementor_pro_version', '3.35.0'),
(10346, 1076, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10347, 1076, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#022E20\"},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"337d47b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\"},\"elements\":[{\"id\":\"1d90ce3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"5d09dd9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"5175ffd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d69aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f9de76d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"d55d5cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a7855\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283fd5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c330b2b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"067f722\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"cf0ff0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceb5d5f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ddef5f8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2a993ab\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"fb33ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2a378\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4da7397\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10348, 1076, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10352, 1076, '_elementor_screenshot_failed', '2026-02-14 08:46:56'),
(10362, 1077, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10399, 1080, '_elementor_template_type', 'footer'),
(10400, 1080, '_elementor_version', '3.35.0'),
(10401, 1080, '_elementor_pro_version', '3.35.0'),
(10368, 1078, '_elementor_source', 'post'),
(10369, 1078, '_elementor_edit_mode', 'builder'),
(10370, 1078, '_elementor_template_type', 'footer'),
(10371, 1078, '_elementor_version', '3.35.0'),
(10372, 1078, '_elementor_pro_version', '3.35.0'),
(10373, 1078, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10374, 1078, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"337d47b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1d90ce3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"5d09dd9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"5175ffd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d69aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f9de76d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"d55d5cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a7855\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283fd5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c330b2b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"067f722\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"cf0ff0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceb5d5f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ddef5f8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2a993ab\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"fb33ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2a378\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4da7397\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10397, 1080, '_elementor_source', 'post'),
(10398, 1080, '_elementor_edit_mode', 'builder'),
(10383, 1079, '_elementor_source', 'post'),
(10384, 1079, '_elementor_edit_mode', 'builder'),
(10385, 1079, '_elementor_template_type', 'footer'),
(10386, 1079, '_elementor_version', '3.35.0'),
(10387, 1079, '_elementor_pro_version', '3.35.0'),
(10388, 1079, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10389, 1079, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"337d47b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#002327\",\"hide_widescreen\":\"hidden-widescreen\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet_extra\":\"hidden-tablet_extra\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile_extra\":\"hidden-mobile_extra\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"1d90ce3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"5d09dd9\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"5175ffd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":249,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d69aaa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. \",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"f9de76d\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"d55d5cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c7a7855\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"283fd5b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c330b2b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"067f722\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"cf0ff0d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ceb5d5f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ddef5f8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2a993ab\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"fb33ed1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2a378\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ffffff\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#363636\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor4\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4da7397\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"Adult Day Service\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\"},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor5\",\"text_color\":\"globals\\/colors?id=astglobalcolor5\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10404, 1080, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10411, 1081, '_elementor_source', 'post'),
(10412, 1081, '_elementor_edit_mode', 'builder'),
(10413, 1081, '_elementor_template_type', 'footer'),
(10414, 1081, '_elementor_version', '3.35.0'),
(10415, 1081, '_elementor_pro_version', '3.35.0'),
(10416, 1081, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10417, 1081, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Schedule Your Tour\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ca5955d\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(11265, 1158, '_wp_page_template', 'elementor_header_footer'),
(11266, 1158, '_elementor_edit_mode', 'builder'),
(11267, 1158, '_elementor_template_type', 'wp-page'),
(11268, 1158, '_elementor_version', '3.35.5'),
(11269, 1158, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11270, 1158, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10429, 1082, '_elementor_version', '3.35.0'),
(10430, 1082, '_elementor_pro_version', '3.35.0'),
(10431, 1082, '_wp_page_template', 'default'),
(10432, 1082, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10466, 1083, '_elementor_edit_mode', 'builder'),
(10467, 1083, '_astra_content_layout_flag', 'disabled'),
(10493, 1083, '_elementor_data', '[{\"id\":\"0a68279\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3921be9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0af5a44\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65410b3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e20ebe\"}]},\"elements\":[{\"id\":\"ebdee79\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4dd5197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa7bb2c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9be87f\"}],\"pp_display_conditions\":[{\"_id\":\"99377a5\"}]},\"elements\":[{\"id\":\"04e077c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Notes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27fc39d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis Health Care Community, we respect your privacy and are committed to protecting your personal information.<\\/p><p>We collect only the information necessary to provide quality services, respond to inquiries, process applications, and improve our care programs. This may include basic contact details and information related to care services.<\\/p><p>We do not sell, rent, or share your personal information with third parties, except when required by law or necessary to provide our services.<\\/p><p>All information is handled with confidentiality and appropriate security measures to ensure it remains protected.<\\/p><p>If you have any questions regarding your privacy or how your information is used, please contact us directly.<\\/p><p>Oasis Health Care Community<br \\/>Caring for your loved ones with compassion<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"53f6a37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10469, 1083, 'ast-title-bar-display', 'disabled'),
(10470, 1083, 'ast-featured-img', 'disabled'),
(10471, 1083, '_elementor_template_type', 'wp-page'),
(10472, 1083, '_elementor_version', '3.35.0'),
(10473, 1083, '_elementor_pro_version', '3.35.0'),
(10479, 1086, '_wp_page_template', 'elementor_header_footer'),
(10480, 1086, '_elementor_edit_mode', 'builder'),
(10481, 1086, '_elementor_template_type', 'wp-page'),
(10375, 1078, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(10390, 1079, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11073, 24, '_elementor_page_settings', 'a:0:{}'),
(11074, 24, '_elementor_controls_usage', 'a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:4;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:15:\"_section_border\";a:3:{s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:5;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:16:\"_flex_align_self\";i:1;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:5;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:2;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:10:\"icon_align\";i:2;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:6:{s:13:\"content_width\";i:12;s:20:\"flex_justify_content\";i:2;s:14:\"flex_direction\";i:9;s:5:\"width\";i:3;s:8:\"flex_gap\";i:1;s:11:\"boxed_width\";i:3;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:17;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:3;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:17;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:3;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:8;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:19:\"image_border_radius\";i:2;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}}}}s:20:\"pp-info-box-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:18:\"section_info_boxes\";a:7:{s:13:\"pp_info_boxes\";i:1;s:6:\"layout\";i:1;s:7:\"columns\";i:1;s:20:\"columns_mobile_extra\";i:1;s:14:\"title_html_tag\";i:1;s:18:\"sub_title_html_tag\";i:1;s:18:\"equal_height_boxes\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_layout_style\";a:3:{s:5:\"align\";i:1;s:11:\"columns_gap\";i:1;s:8:\"rows_gap\";i:1;}s:22:\"section_info_box_style\";a:3:{s:30:\"info_box_background_background\";i:1;s:22:\"info_box_border_radius\";i:1;s:16:\"info_box_padding\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:4:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:6:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;s:14:\"email_reply_to\";i:1;s:13:\"form_metadata\";i:1;}s:15:\"section_email_2\";a:2:{s:15:\"email_subject_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:1;s:13:\"label_spacing\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;s:7:\"row_gap\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:1:{s:18:\"field_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10418, 1081, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11050, 1136, '_elementor_page_settings', 'a:0:{}'),
(10452, 1085, '_elementor_source', 'post'),
(10453, 1085, '_elementor_edit_mode', 'builder'),
(10454, 1085, '_elementor_template_type', 'footer'),
(10455, 1085, '_elementor_version', '3.35.0'),
(10456, 1085, '_elementor_pro_version', '3.35.0'),
(10457, 1085, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10458, 1085, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab.webp\",\"id\":1061,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/privacy-notes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10433, 1082, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11054, 1137, '_wp_page_template', 'elementor_header_footer'),
(11055, 1137, '_elementor_edit_mode', 'builder'),
(11056, 1137, '_elementor_template_type', 'wp-page'),
(11057, 1137, '_elementor_version', '3.35.0'),
(11058, 1137, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11059, 1137, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1063,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(11026, 1135, '_elementor_source', 'post'),
(11027, 1135, '_elementor_edit_mode', 'builder'),
(11028, 1135, '_elementor_template_type', 'footer'),
(11029, 1135, '_elementor_version', '3.35.0'),
(11030, 1135, '_elementor_pro_version', '3.35.0'),
(11031, 1135, '_wp_page_template', 'default');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11032, 1135, '_elementor_data', '[{\"id\":\"bd9864c\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"background_color\":\"#FEF4F1\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9aaf501\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"c8fc0da\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6e31547\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"14ae68e\"}],\"__globals__\":{\"background_color\":\"\"},\"e_display_conditions\":[\"[[{\\\"condition\\\":\\\"page_title\\\",\\\"comparator\\\":\\\"is_not\\\",\\\"titles\\\":[{\\\"id\\\":24,\\\"text\\\":\\\"Careers\\\"}]}]]\"]},\"elements\":[{\"id\":\"14ae017\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet\":\"column-reverse\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08c315\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"463dd4f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7456add\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"6dff497\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"57c1e5c\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"01ab5bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"546d9e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c9518d2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7a10c06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_background_color\":\"#FEF4F1\",\"_border_color\":\"#108490\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"487ba60\",\"elType\":\"widget\",\"settings\":{\"text\":\"Apply Now\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/careers\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"1ff39ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ad57bbc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d5ef0c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"829bcbf\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6159d4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b71782e\"}],\"animation\":\"none\"},\"elements\":[{\"id\":\"db89be2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1134,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#DDDDDD\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"image_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"b96f41e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6ba3d82\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6ae1cb6\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3f75098\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"edbfb6c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae853ff\"}]},\"elements\":[{\"id\":\"63a1fff\",\"elType\":\"widget\",\"settings\":{\"address\":\"696 W. 84th AVE. Thornton, CO 80260\",\"pp_display_conditions\":[{\"_id\":\"10168b2\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"zoom\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":381,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false},{\"id\":\"41c977f4\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"8492c7a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"22e8c6a\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"94f2c26\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"c6d0a0e\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5fbb6a42\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"b46e820\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"835bee4\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6b6b48b\"}],\"pp_display_conditions\":[{\"_id\":\"6e20e90\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"flex_wrap_tablet\":\"wrap\",\"flex_justify_content_tablet\":\"center\",\"flex_wrap_tablet_extra\":\"wrap\"},\"elements\":[{\"id\":\"169d01e4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"546136f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":636,\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-Day-Care-Center-logo-ab.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"align\":\"left\",\"space\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"46e4aff\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__dynamic__\":{\"link\":\"[elementor-tag id=\\\"be36aee\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"_element_custom_width\":{\"unit\":\"px\",\"size\":288,\"sizes\":[]},\"_element_custom_width_mobile_extra\":{\"unit\":\"px\",\"size\":212,\"sizes\":[]},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"48d53faf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b24c8c9\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6bb7d4a4\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b2d5b54\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Info\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"419ed80b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be90728\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"696 W. 84th AVE. Thornton, CO 80260\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"01f2c97\",\"link\":{\"url\":\"https:\\/\\/maps.google.com\\/maps?ll=39.848549,-104.99545&z=13&t=m&hl=en-US&gl=US&mapclient=embed&q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d222e70\"},{\"text\":\"303-265-9199\",\"selected_icon\":{\"value\":\"fas fa-fax\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"fax:3032659199\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f427fa8\"},{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1460fd85\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"f08ab80\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"social_icon\":{\"value\":\"fab fa-x-twitter\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bc50426\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5ec7d05\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"pp_display_conditions\":[{\"_id\":\"b467ee2\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=astglobalcolor1\",\"icon_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"hover_secondary_color\":\"globals\\/colors?id=astglobalcolor4\",\"image_border_color\":\"globals\\/colors?id=astglobalcolor2\",\"hover_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"icon_secondary_color\":\"#FFFFFF\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"hover_primary_color\":\"#12c2f1\",\"hover_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"icon_padding_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"8520cd7\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"14af065\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quicklinks\",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b702a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39e02fe\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Locations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/locations\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"342c5a4\"},{\"text\":\"Our Companies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-companies\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"0441f63\"},{\"text\":\"Our Team\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7733f7b\"},{\"text\":\"Privacy Notes\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/privacy-notes\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9981c79\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"fe6dbdb\",\"elType\":\"container\",\"settings\":{\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"afbe0da\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"419a070\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7a64412\"}],\"pp_display_conditions\":[{\"_id\":\"11bcac5\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"content_width\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet_extra\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]}},\"elements\":[{\"id\":\"a70c18b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services \",\"header_size\":\"h6\",\"pp_display_conditions\":[{\"_id\":\"22ff777\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor2\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"801011b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#ef4922\",\"weight\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"0b5f3f4\",\"pp_condition_date_time_before_value\":\"2024-02-22 07:36\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F5DBD4\",\"__globals__\":{\"color\":\"globals\\/colors?id=astglobalcolor1\",\"_border_color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"b9d30a3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Adult Day Service\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e9d20e4\"},{\"text\":\"Home Care\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"9aaad11\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Transportation\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c719b3f\"}],\"link_click\":\"inline\",\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"8807a75\",\"pp_condition_date_time_before_value\":\"2024-02-15 10:37\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"icon_color_hover\":\"globals\\/colors?id=astglobalcolor1\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"297ac11\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e4d9f07\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a725699\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3ee2b2f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1bde430\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#001113\"},\"elements\":[{\"id\":\"5ca684a9\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u00a9 2026. All Rights Reserved. Website Developed by <a href=\\\"https:\\/\\/devrivo.com\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Devrivo<\\/a>\",\"header_size\":\"span\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"062ef0b\",\"pp_condition_date_value\":\"2025-08-24 to 2025-08-30\",\"pp_condition_date_time_before_value\":\"2025-08-30 15:57\",\"pp_condition_device_type_value\":\"mobile\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),
(10442, 1083, '_edit_last', '1'),
(10443, 1083, '_wp_page_template', 'elementor_header_footer'),
(10444, 1083, 'site-sidebar-layout', 'no-sidebar'),
(10449, 1083, 'theme-transparent-header-meta', 'default'),
(10446, 1083, 'ast-site-content-layout', 'full-width-container'),
(10447, 1083, 'site-content-style', 'default'),
(10448, 1083, 'site-sidebar-style', 'default'),
(10450, 1083, 'astra-migrate-meta-layouts', 'set'),
(10451, 1083, '_edit_lock', '1771061717:1'),
(10459, 1085, '_elementor_conditions', 'a:1:{i:0;s:15:\"include/general\";}'),
(11060, 1137, '_elementor_page_settings', 'a:0:{}'),
(10463, 1085, '_elementor_screenshot_failed', '2026-02-14 09:28:10'),
(10482, 1086, '_elementor_version', '3.35.0'),
(10483, 1086, '_elementor_pro_version', '3.35.0'),
(10484, 1086, '_elementor_page_settings', 'a:0:{}'),
(10486, 1087, '_wp_page_template', 'elementor_header_footer'),
(10487, 1087, '_elementor_edit_mode', 'builder'),
(10488, 1087, '_elementor_template_type', 'wp-page'),
(10489, 1087, '_elementor_version', '3.35.0'),
(10490, 1087, '_elementor_pro_version', '3.35.0'),
(10491, 1087, '_elementor_page_settings', 'a:0:{}'),
(10494, 1088, '_wp_page_template', 'elementor_header_footer'),
(10495, 1088, '_elementor_edit_mode', 'builder'),
(10496, 1088, '_elementor_template_type', 'wp-page'),
(10497, 1088, '_elementor_version', '3.35.0'),
(10498, 1088, '_elementor_pro_version', '3.35.0'),
(10500, 1088, '_elementor_data', '[{\"id\":\"0a68279\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3921be9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0af5a44\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65410b3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e20ebe\"}]},\"elements\":[{\"id\":\"ebdee79\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4dd5197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa7bb2c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9be87f\"}],\"pp_display_conditions\":[{\"_id\":\"99377a5\"}]},\"elements\":[{\"id\":\"04e077c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(10503, 1089, '_wp_page_template', 'elementor_header_footer'),
(10504, 1089, '_elementor_edit_mode', 'builder'),
(10505, 1089, '_elementor_template_type', 'wp-page'),
(10506, 1089, '_elementor_version', '3.35.0'),
(10507, 1089, '_elementor_pro_version', '3.35.0'),
(10509, 1089, '_elementor_data', '[{\"id\":\"0a68279\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3921be9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0af5a44\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65410b3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e20ebe\"}]},\"elements\":[{\"id\":\"ebdee79\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4dd5197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa7bb2c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9be87f\"}],\"pp_display_conditions\":[{\"_id\":\"99377a5\"}]},\"elements\":[{\"id\":\"04e077c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(10510, 1089, '_elementor_page_settings', 'a:0:{}'),
(10511, 1090, '_wp_page_template', 'elementor_header_footer'),
(10512, 1090, '_elementor_edit_mode', 'builder'),
(10513, 1090, '_elementor_template_type', 'wp-page'),
(10514, 1090, '_elementor_version', '3.35.0'),
(10515, 1090, '_elementor_pro_version', '3.35.0'),
(10517, 1090, '_elementor_data', '[{\"id\":\"0a68279\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3921be9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0af5a44\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65410b3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e20ebe\"}]},\"elements\":[{\"id\":\"ebdee79\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4dd5197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa7bb2c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9be87f\"}],\"pp_display_conditions\":[{\"_id\":\"99377a5\"}]},\"elements\":[{\"id\":\"04e077c\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":false}]'),
(10518, 1090, '_elementor_page_settings', 'a:0:{}'),
(10519, 1091, '_wp_page_template', 'elementor_header_footer'),
(10520, 1091, '_elementor_edit_mode', 'builder'),
(10521, 1091, '_elementor_template_type', 'wp-page'),
(10522, 1091, '_elementor_version', '3.35.0'),
(10523, 1091, '_elementor_pro_version', '3.35.0'),
(10525, 1091, '_elementor_data', '[{\"id\":\"0a68279\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3921be9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"0af5a44\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"65410b3\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4e20ebe\"}]},\"elements\":[{\"id\":\"ebdee79\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4dd5197\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fa7bb2c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a9be87f\"}],\"pp_display_conditions\":[{\"_id\":\"99377a5\"}]},\"elements\":[{\"id\":\"04e077c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Privacy Notes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27fc39d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At Oasis Health Care Community, we respect your privacy and are committed to protecting your personal information.<\\/p><p>We collect only the information necessary to provide quality services, respond to inquiries, process applications, and improve our care programs. This may include basic contact details and information related to care services.<\\/p><p>We do not sell, rent, or share your personal information with third parties, except when required by law or necessary to provide our services.<\\/p><p>All information is handled with confidentiality and appropriate security measures to ensure it remains protected.<\\/p><p>If you have any questions regarding your privacy or how your information is used, please contact us directly.<\\/p><p>Oasis Health Care Community<br \\/>Caring for your loved ones with compassion<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"53f6a37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10526, 1083, '_elementor_page_settings', 'a:0:{}'),
(10527, 1083, '_elementor_controls_usage', 'a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:2:{s:13:\"content_width\";i:1;s:14:\"flex_direction\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:2;}}s:8:\"advanced\";a:2:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}}'),
(10530, 1092, '_wp_attached_file', '2026/02/Daily-Health-Care-Monitoring-ag.jpg'),
(10531, 1092, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2026/02/Daily-Health-Care-Monitoring-ag.jpg\";s:8:\"filesize\";i:69446;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-ag-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16048;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-ag-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7848;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Daily-Health-Care-Monitoring-ag-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67289;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(11085, 1139, '_wp_attached_file', '2026/02/Personal-Caregiving-mus-1.webp'),
(11086, 1139, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:38:\"2026/02/Personal-Caregiving-mus-1.webp\";s:8:\"filesize\";i:39174;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Personal-Caregiving-mus-1-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11054;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Personal-Caregiving-mus-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5826;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Personal-Caregiving-mus-1-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10541, 1094, '_elementor_page_settings', 'a:0:{}'),
(11262, 1157, '_elementor_page_settings', 'a:0:{}'),
(10544, 1095, '_wp_page_template', 'elementor_header_footer'),
(10545, 1095, '_elementor_edit_mode', 'builder'),
(10546, 1095, '_elementor_template_type', 'wp-page'),
(10547, 1095, '_elementor_version', '3.35.0'),
(10548, 1095, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10549, 1095, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10551, 1095, '_elementor_page_settings', 'a:0:{}'),
(11302, 1162, '_wp_page_template', 'elementor_header_footer'),
(11286, 1160, '_wp_page_template', 'elementor_header_footer'),
(11287, 1160, '_elementor_edit_mode', 'builder'),
(11288, 1160, '_elementor_template_type', 'wp-page'),
(11289, 1160, '_elementor_version', '3.35.5'),
(11290, 1160, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11291, 1160, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab-1.webp\",\"id\":1156,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11253, 1156, '_wp_attached_file', '2026/02/sociel-activiti-ab-1.webp'),
(11254, 1156, '_wp_attachment_metadata', 'a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:33:\"2026/02/sociel-activiti-ab-1.webp\";s:8:\"filesize\";i:115488;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"sociel-activiti-ab-1-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20720;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"sociel-activiti-ab-1-1024x682.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:77310;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"sociel-activiti-ab-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"sociel-activiti-ab-1-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55508;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"sociel-activiti-ab-1-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:121512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),
(10555, 1096, '_elementor_edit_mode', 'builder'),
(10556, 1096, '_elementor_template_type', 'wp-page'),
(10557, 1096, '_elementor_version', '3.35.0'),
(10558, 1096, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10559, 1096, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11065, 1138, '_elementor_edit_mode', 'builder'),
(11066, 1138, '_elementor_template_type', 'wp-page'),
(11067, 1138, '_elementor_version', '3.35.0'),
(11068, 1138, '_elementor_pro_version', '3.35.0'),
(11069, 1138, '_elementor_data', '[{\"id\":\"37d7f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4ddfaeb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"5e4acf9\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8b95b4f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"851a192\"}]},\"elements\":[{\"id\":\"17ba5d9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"flex_direction_tablet_extra\":\"column-reverse\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ed9c4d\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"3c975fa\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"61ab708\"}],\"pp_display_conditions\":[{\"_id\":\"21a7e81\"}]},\"elements\":[{\"id\":\"2df0fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"05ae7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Careers\",\"pp_display_conditions\":[{\"_id\":\"d57aeb7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"377a4d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br \\/><strong>Current opportunities may include:<\\/strong><\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"1389d6b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:45\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"cdcb7d3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Direct Care Workers \\/ Caregivers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Activity Assistants\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"15545de\"},{\"text\":\"Home Care Aides\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0b0a828\"},{\"text\":\"Drivers (Non-Medical Transportation)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"751330a\"},{\"text\":\"Nurses (Part-Time)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2fdf8f1\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"af2459a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Apply by submitting your resume through our website or contacting our office.\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"69bb86b\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:48\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_background_background\":\"classic\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=astglobalcolor5\",\"_border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"_flex_align_self\":\"flex-start\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2fae1bc\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7dd4698\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"39866e2\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4b4cdbd\"}],\"pp_display_conditions\":[{\"_id\":\"0f19b40\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"1e239b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/career-ab-1.webp\",\"id\":1134,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#EEEEEE\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"4d2e6cf\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d8313ac\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"5a7693b\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"181a792\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b7c643e\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"77f3e52\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"0a0c554\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"faa73ed\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a8c9ae7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"7eba659\"}],\"pp_display_conditions\":[{\"_id\":\"b6c1763\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"c42f11f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Work-Where-Your-Compassion-Matters-ag.jpg\",\"id\":858,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ce488f7\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4692381\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e08ae05\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ecb0d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"56c82d9\"}],\"pp_display_conditions\":[{\"_id\":\"ca7b29c\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"d12ef3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Join the Oasis Health Care Community Team\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"825646d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work Where Your Compassion Matters\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"5e73456\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65862a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>At <strong>Oasis Health Care Community<\\/strong>, we believe meaningful work starts with meaningful relationships. If you\\u2019re passionate about helping others, making a difference, and working in a supportive, respectful environment \\u2014 we\\u2019d love to hear from you. Our team members are the heart of Oasis.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"c823833\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"b1a8fd5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0f6e034\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7222d3d\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8ccbf7d\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"74d540b\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":1240,\"sizes\":[]}},\"elements\":[{\"id\":\"4b44cd1\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4133ca4\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eda44e1\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e8a3987\"}],\"pp_display_conditions\":[{\"_id\":\"0adc2a2\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"1785e8c\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\"Why Work at Oasis? \",\"_id\":\"07ccbba\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Family-focused, supportive workplace<\\/li><li>Meaningful work that impacts lives daily<\\/li><li>Ongoing training and growth opportunities<\\/li><li>Stable daytime hours (no overnight shifts)<\\/li><li>Positive, team-oriented culture<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\"},{\"title\":\"Positions We May Hire For\",\"subtitle\":\"(Availability may vary)\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Adult Day Care Caregivers<\\/li><li>Activity Coordinators<\\/li><li>Drivers (Transportation Services)<\\/li><li>Program Assistants<\\/li><li>Administrative &amp; Support Staff<\\/li><\\/ul><p>Experience in adult care, senior services, or healthcare is a plus \\u2014 but compassion and reliability<br \\/>matter most.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5e0162\"},{\"title\":\"What We Look For \",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Kind, patient, and respectful individuals<\\/li><li>Strong communication skills<\\/li><li>Dependability and professionalism<\\/li><li>Commitment to participant safety and dignity<\\/li><li>Willingness to learn and grow<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"293d3b7\"},{\"title\":\"Benefits (May Include)\",\"subtitle\":\"\",\"description\":\"<ul style=\\\"margin-left: 18px;\\\"><li>Competitive pay<\\/li><li>Training and onboarding support<\\/li><li>Opportunities for advancement<\\/li><li>Positive work-life balance<\\/li><\\/ul>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"867c765\"}],\"layout\":\"grid\",\"columns\":\"2\",\"columns_mobile_extra\":\"1\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"span\",\"equal_height_boxes\":\"yes\",\"align\":\"left\",\"columns_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"rows_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"info_box_background_background\":\"classic\",\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"e819646\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"794c751\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c7a6ed7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"72d591b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f3df775\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"238f7a8\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"},\"boxed_width\":{\"unit\":\"px\",\"size\":941,\"sizes\":[]}},\"elements\":[{\"id\":\"b50379b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"75a7107\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16f9020\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"47b7bf6\"}],\"pp_display_conditions\":[{\"_id\":\"6ee70f6\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"cfc6ded\",\"elType\":\"widget\",\"settings\":{\"title\":\"How to Apply \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7ce72f5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Interested in joining our team?\",\"header_size\":\"h5\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"66fd96d\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"1ee517c\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d4cd303\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"ab1a77e\"}],\"pp_display_conditions\":[{\"_id\":\"526760f\"}]},\"elements\":[{\"id\":\"37c84df\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0c1b126\",\"elType\":\"widget\",\"settings\":{\"title\":\"Adult Day Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ea16f8\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasisadc1@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-504-4242\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7205044242\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3f069f0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"49f72a1\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"24a0562\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"a0f33f0\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"3355976\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3d02d71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Home Care\",\"header_size\":\"h6\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc6ffb7\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a4469b\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"oasishc23@gmail.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"ce22082\",\"link\":{\"url\":\"mailto:oasisadc1@gmail.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"720-600-7270\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:7206007270\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a225993\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"e29e47e\",\"pp_condition_date_time_before_value\":\"2026-02-12 08:26\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\",\"text_color\":\"globals\\/colors?id=astglobalcolor2\",\"text_color_hover\":\"globals\\/colors?id=astglobalcolor1\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71be934\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"e7309e5\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"d3d87ba\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"b6301ba\"}],\"pp_display_conditions\":[{\"_id\":\"3ae834c\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"7ff9103\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Or complete our<strong> Employment Inquiry Form<\\/strong> and a team member will contact you.<\\/p>\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"cbfa73d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"a3d7884\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3194fbf\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"615404b\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"2fc720f\"}],\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"10\",\"bottom\":\"70\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"dd6e8d2\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"boxed_width\":{\"unit\":\"px\",\"size\":973,\"sizes\":[]}},\"elements\":[{\"id\":\"3aae527\",\"elType\":\"container\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"7aae957\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"108b7fe\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"6aafb20\"}],\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.13)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"a142c7b\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"animation\":\"fadeInUp\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3594ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Equal Opportunity Employer \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"dc5abbd\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"7\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#F1F1F1\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d44eac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees. \",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"4000d8e\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"114881e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Equal Opportunity Employer \",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"First Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"fcfbacc\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"field_b94c01e\",\"field_label\":\"Last Name\",\"width\":\"50\",\"dynamic\":{\"active\":true},\"_id\":\"b94c01e\",\"required\":\"true\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"Phone Number \",\"_id\":\"07b5815\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cc1facf\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"cc1facf\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"width\":\"50\"},{\"custom_id\":\"field_cfa7f6e\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"Position of Interest\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"Caregiver\\nActivity Assistant\\nHome Care Aide\\nDriver (Non-Medical Transportation)\\nNurse (Part-Time)\",\"_id\":\"cfa7f6e\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"_id\":\"42853d7\",\"previous_button\":\"\",\"next_button\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\"}],\"input_size\":\"md\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Submit\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"Your submission was successful.\",\"error_message\":\"Your submission failed because of an error.\",\"server_message\":\"Your submission failed because of a server error.\",\"invalid_message\":\"Your submission failed because the form is invalid.\",\"required_field_message\":\"This field is required.\",\"column_gap\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"field_border_color\":\"#D1D1D1\",\"pp_display_conditions\":[{\"_id\":\"09292a9\",\"pp_condition_date_time_before_value\":\"2024-04-25 11:28\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"field_border_color\":\"\",\"button_background_color\":\"globals\\/colors?id=astglobalcolor0\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor1\"},\"button_size\":\"md\",\"mark_required\":\"yes\",\"row_gap\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"html_spacing\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"activecampaign_fields_map\":[],\"convertkit_fields_map\":[],\"drip_fields_map\":[],\"getresponse_fields_map\":[],\"mailchimp_fields_map\":[],\"mailerlite_fields_map\":[],\"email_to\":\"oasisadc1@gmail.com\",\"email_subject\":\"Equal Opportunity Employer   -  Oasis Health Care Community\",\"email_from\":\"noreply@mrarif.me\",\"email_from_name\":\"Oasis\",\"email_reply_to\":\"field_cc1facf\",\"form_metadata\":[\"date\",\"time\",\"page_url\"],\"email_to_2\":\"arifwebsols@gmail.com\",\"email_subject_2\":\"New message from \\\"Oasis\\\"\",\"email_from_2\":\"email@mrarif.me\",\"email_from_name_2\":\"Oasis\",\"email_reply_to_2\":\"arifwebsols@gmail.com\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":false}]'),
(10932, 1125, '_wp_page_template', 'elementor_header_footer'),
(10914, 1123, '_wp_page_template', 'elementor_header_footer'),
(10915, 1123, '_elementor_edit_mode', 'builder'),
(10916, 1123, '_elementor_template_type', 'wp-page'),
(10917, 1123, '_elementor_version', '3.35.0'),
(10918, 1123, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10919, 1123, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10574, 1097, '_elementor_page_settings', 'a:0:{}'),
(10577, 1098, '_wp_page_template', 'elementor_header_footer'),
(10578, 1098, '_elementor_edit_mode', 'builder'),
(10579, 1098, '_elementor_template_type', 'wp-page'),
(10580, 1098, '_elementor_version', '3.35.0'),
(10581, 1098, '_elementor_pro_version', '3.35.0'),
(10582, 1098, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(10584, 1098, '_elementor_page_settings', 'a:0:{}'),
(11293, 1160, '_elementor_page_settings', 'a:0:{}'),
(11294, 1161, '_wp_page_template', 'elementor_header_footer'),
(11295, 1161, '_elementor_edit_mode', 'builder'),
(11296, 1161, '_elementor_template_type', 'wp-page'),
(11297, 1161, '_elementor_version', '3.35.5'),
(11298, 1161, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11299, 1161, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab-1.webp\",\"id\":1156,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10588, 1099, '_elementor_edit_mode', 'builder'),
(10589, 1099, '_elementor_template_type', 'wp-page'),
(10590, 1099, '_elementor_version', '3.35.0'),
(10591, 1099, '_elementor_pro_version', '3.35.0'),
(10592, 1099, '_elementor_data', '[{\"id\":\"8f94366\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"ee01cac\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5d52860\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"67b7761\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"653b1ec\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"497cd59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"929361a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"de91ff1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans and Treatments\",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4079c62\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4dc5382\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b54b7e\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"73a69d7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"106ba5f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"eaddd2a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"301dd0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4f4329e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"436580b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a8bab97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c178f63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"88df10e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4742af0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"85ce896\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"b4d7912\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"f38bb58\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"cc3abcb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"60c6311\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ea77f2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3a92476\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"738d778\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"7ee113e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7dee24\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"dd84ced\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Transportation\",\"description_text\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"a963c78\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"b896b98\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/caregiver-aa.jpg\",\"id\":1005,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ceea097\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-administration\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0fe70c1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Administration\",\"description_text\":\"\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:13\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),
(11130, 1143, '_elementor_page_settings', 'a:0:{}'),
(10632, 348, '_elementor_page_settings', 'a:0:{}'),
(10633, 348, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(10609, 1100, '_elementor_page_settings', 'a:0:{}'),
(10613, 1101, '_wp_page_template', 'elementor_header_footer'),
(10614, 1101, '_elementor_edit_mode', 'builder'),
(10615, 1101, '_elementor_template_type', 'wp-page'),
(10616, 1101, '_elementor_version', '3.35.0'),
(10617, 1101, '_elementor_pro_version', '3.35.0'),
(10618, 1101, '_elementor_data', '[{\"id\":\"dc9d95f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"8401f01\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0ac60f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-aa.jpg\",\"id\":209,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d80648\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4b6e343\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Health Care Monitoring\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b841b19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10619, 1101, '_elementor_page_settings', 'a:0:{}'),
(10624, 1102, '_elementor_edit_mode', 'builder'),
(10625, 1102, '_elementor_template_type', 'wp-page'),
(10626, 1102, '_elementor_version', '3.35.0'),
(10627, 1102, '_elementor_pro_version', '3.35.0'),
(10628, 1102, '_elementor_data', '[{\"id\":\"dc9d95f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"8401f01\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"0ac60f3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d80648\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"4b6e343\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Health Care Monitoring\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b841b19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11153, 16, '_elementor_page_settings', 'a:0:{}'),
(11154, 16, '_elementor_controls_usage', 'a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:24:\"section_layout_container\";a:7:{s:13:\"content_width\";i:10;s:5:\"width\";i:8;s:14:\"flex_direction\";i:2;s:8:\"flex_gap\";i:1;s:20:\"flex_justify_content\";i:1;s:9:\"flex_wrap\";i:1;s:11:\"boxed_width\";i:1;}s:33:\"section_layout_additional_options\";a:1:{s:4:\"link\";i:1;}}s:5:\"style\";a:3:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:11;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:8;s:12:\"border_width\";i:8;s:13:\"border_radius\";i:8;}s:18:\"section_background\";a:1:{s:21:\"background_background\";i:1;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:11;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:9;s:18:\"animation_duration\";i:9;}s:14:\"section_layout\";a:2:{s:7:\"padding\";i:9;s:11:\"css_classes\";i:10;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:8;s:10:\"image_size\";i:8;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:8;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:8;s:13:\"selected_icon\";i:8;s:4:\"link\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:16:\"background_color\";i:8;s:13:\"border_radius\";i:8;s:12:\"text_padding\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:8:\"_padding\";i:8;}s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:8;s:10:\"title_text\";i:8;s:16:\"description_text\";i:8;s:10:\"title_size\";i:8;}}s:5:\"style\";a:1:{s:17:\"section_style_box\";a:2:{s:10:\"text_align\";i:8;s:18:\"title_bottom_space\";i:8;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:8;}}}}}'),
(10640, 1103, '_elementor_page_settings', 'a:0:{}'),
(10644, 1104, '_wp_page_template', 'elementor_header_footer'),
(10645, 1104, '_elementor_edit_mode', 'builder'),
(10646, 1104, '_elementor_template_type', 'wp-page'),
(10647, 1104, '_elementor_version', '3.35.0'),
(10648, 1104, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10649, 1104, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/2148934332-1.jpg\",\"id\":225,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10650, 1104, '_elementor_page_settings', 'a:0:{}'),
(11161, 1146, '_elementor_page_settings', 'a:0:{}'),
(10655, 1105, '_elementor_edit_mode', 'builder'),
(10656, 1105, '_elementor_template_type', 'wp-page'),
(10657, 1105, '_elementor_version', '3.35.0'),
(10658, 1105, '_elementor_pro_version', '3.35.0'),
(10659, 1105, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11165, 1147, '_wp_page_template', 'elementor_header_footer'),
(11166, 1147, '_elementor_edit_mode', 'builder'),
(11167, 1147, '_elementor_template_type', 'wp-page'),
(11168, 1147, '_elementor_version', '3.35.0'),
(11169, 1147, '_elementor_pro_version', '3.35.0'),
(11170, 1147, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(10673, 1106, '_elementor_page_settings', 'a:0:{}'),
(11226, 358, '_elementor_page_settings', 'a:0:{}'),
(11227, 358, '_elementor_controls_usage', 'a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:24:\"icon_self_vertical_align\";i:1;s:20:\"icon_vertical_offset\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}}}}'),
(11203, 1150, '_elementor_page_settings', 'a:0:{}'),
(11207, 1151, '_wp_page_template', 'elementor_header_footer'),
(11208, 1151, '_elementor_edit_mode', 'builder'),
(11209, 1151, '_elementor_template_type', 'wp-page'),
(11210, 1151, '_elementor_version', '3.35.0'),
(11211, 1151, '_elementor_pro_version', '3.35.0'),
(11212, 1151, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.jpg\",\"id\":457,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(11213, 1151, '_elementor_page_settings', 'a:0:{}'),
(11218, 1152, '_elementor_edit_mode', 'builder'),
(11219, 1152, '_elementor_template_type', 'wp-page'),
(11220, 1152, '_elementor_version', '3.35.0'),
(11221, 1152, '_elementor_pro_version', '3.35.0'),
(11222, 1152, '_elementor_data', '[{\"id\":\"81ab6e5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\"}]},\"elements\":[{\"id\":\"8b1754a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"1148865\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Transportation-aa.webp\",\"id\":1149,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"211cd6a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"f6b37bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Safe, Reliable Transportation You Can Trust \",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a561b8f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8908c20\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Trained, compassionate drivers \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Clean, well-maintained vehicles \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"600c027\"},{\"text\":\"Assistance with boarding and exiting\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"13c5488\"},{\"text\":\"Consistent pickup and drop-off schedules \",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fc992c\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:07\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"9ce658b\",\"elType\":\"widget\",\"settings\":{\"pp_display_conditions\":[{\"_id\":\"faab399\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"text\":\"Ask About Transportation \",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false}]'),
(10676, 1107, '_wp_page_template', 'elementor_header_footer'),
(10677, 1107, '_elementor_edit_mode', 'builder'),
(10678, 1107, '_elementor_template_type', 'wp-page'),
(10679, 1107, '_elementor_version', '3.35.0'),
(10680, 1107, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10681, 1107, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10683, 1107, '_elementor_page_settings', 'a:0:{}'),
(10687, 1108, '_elementor_edit_mode', 'builder'),
(10688, 1108, '_elementor_template_type', 'wp-page'),
(10689, 1108, '_elementor_version', '3.35.0'),
(10690, 1108, '_elementor_pro_version', '3.35.0');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(10691, 1108, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.jpg\",\"id\":657,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab.webp\",\"id\":1054,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus.webp\",\"id\":1093,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11275, 1159, '_wp_page_template', 'elementor_header_footer'),
(11255, 1157, '_wp_page_template', 'elementor_header_footer'),
(11256, 1157, '_elementor_edit_mode', 'builder'),
(11257, 1157, '_elementor_template_type', 'wp-page'),
(11258, 1157, '_elementor_version', '3.35.5'),
(11259, 1157, '_elementor_pro_version', '3.35.1');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11260, 1157, '_elementor_data', '[{\"id\":\"05ade85\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"min_height\":{\"unit\":\"px\",\"size\":750,\"sizes\":[]},\"flex_justify_content\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Oasis-Adult-DayCare-Center.webp\",\"id\":1122,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"97385eb\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7bdc760\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8888728\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"4727a26\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor2\"},\"min_height_widescreen\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"min_height_tablet_extra\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"min_height_mobile_extra\":{\"unit\":\"px\",\"size\":383,\"sizes\":[]},\"min_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"1830253\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"boxed_width\":{\"unit\":\"px\",\"size\":808,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"23ff293\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"7fdca72\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"156e3a8\"}],\"pp_display_conditions\":[{\"_id\":\"146cc30\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"3a9b0bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To Oasis Health Care Community\",\"header_size\":\"h1\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"},\"typography_font_size_mobile_extra\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_size_tablet_extra\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6912b52\",\"elType\":\"widget\",\"settings\":{\"title\":\"Caring for your loved ones with compassion\",\"header_size\":\"h5\",\"pp_display_conditions\":[{\"_id\":\"7e1ce7d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17fe744\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"6c93f6d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"globals\\/colors?id=astglobalcolor4\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f245c1\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"3cb26c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"60abf48\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d68f931\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"bc4f541\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"8bde7eb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5faeaef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Companies\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"b5f281d\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"ba33eed\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"95468c7\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"a974c94\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"782cb9c\"}],\"pp_display_conditions\":[{\"_id\":\"d9981e0\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"4535b00\",\"elType\":\"widget\",\"settings\":{\"pp_info_boxes\":[{\"title\":\" Oasis Adult Day Care\",\"_id\":\"35a73e0\",\"subtitle\":\"\",\"description\":\"<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/adult-day-services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Home Care\",\"subtitle\":\"\",\"description\":\"<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"576c2b8\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/oasis-home-care\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"title\":\"Oasis Non-Medical Transportation\",\"subtitle\":\"\",\"description\":\"<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.<\\/p>\",\"icon_type\":\"none\",\"icon_text\":\"1\",\"button_text\":\"Get Started\",\"_id\":\"b5312a3\",\"link_type\":\"box\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/transportation\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"layout\":\"grid\",\"title_html_tag\":\"h5\",\"sub_title_html_tag\":\"h6\",\"equal_height_boxes\":\"yes\",\"info_box_background_background\":\"classic\",\"info_box_border_border\":\"solid\",\"info_box_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"info_box_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"info_box_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"e83cfab\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"info_box_background_color\":\"globals\\/colors?id=astglobalcolor4\",\"info_box_border_color\":\"globals\\/colors?id=astglobalcolor0\",\"description_color\":\"globals\\/colors?id=astglobalcolor2\"},\"columns_mobile_extra\":\"1\"},\"elements\":[],\"widgetType\":\"pp-info-box-carousel\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"fc6fca5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row-reverse\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\"},\"elements\":[{\"id\":\"ebc2892\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c927475\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/About-Oasis-Adult-Day-Care-aa.jpg\",\"id\":109,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\",\"pp_condition_date_time_before_value\":\"2026-02-08 06:37\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":10,\"vertical\":11,\"blur\":0,\"spread\":0,\"color\":\"#298995\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4ca2b5b\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1730e6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Oasis Adult Day Care\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9b022d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"b9fbbe5\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9d9fc2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/about\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"pp_display_conditions\":[{\"_id\":\"c0d2fcc\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0e91ed5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor5\"}},\"elements\":[{\"id\":\"5ee296b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"33\",\"row\":\"33\",\"isLinked\":true,\"unit\":\"px\",\"size\":33},\"flex_gap_tablet\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"5eb63b0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"1354909\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\" Appointment\",\"description_text\":\"Convenient scheduling options to fit your busy life.\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a2b58fc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Your Appointment\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"_flex_align_self\":\"stretch\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/schedule-your-appointment\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"d7ff486\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"_flex_order_tablet\":\"start\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cd31c0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/team-ab-1.webp\",\"id\":1127,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"cb596df\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"image_size\":\"full\",\"_margin_tablet_extra\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11497f3\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2d7ecda\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"eced184\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"988fca9\"}],\"pp_display_conditions\":[{\"_id\":\"1ef94f5\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor4\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5c53890\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/schedule_8302424.svg\",\"id\":124},\"library\":\"svg\"},\"view\":\"stacked\",\"title_text\":\"Team\",\"description_text\":\"Caring, experienced team for your well-being\",\"title_size\":\"h5\",\"content_vertical_alignment\":\"\",\"text_align\":\"start\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"icon_padding\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"e941444\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=astglobalcolor0\",\"secondary_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"7050ae4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet Our Team\",\"pp_display_conditions\":[{\"_id\":\"9952f16\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"align\":\"justify\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/our-team\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2273596\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"54e4a1a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"96ac435\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"1f6117c\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"d9c7a8e\"}],\"__globals__\":{\"background_color\":\"\"},\"boxed_width\":{\"unit\":\"px\",\"size\":1350,\"sizes\":[]},\"css_classes\":\"services_sections\"},\"elements\":[{\"id\":\"2657577\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0ccb05e\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e74e0c0\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"e1b4de1\"}],\"pp_display_conditions\":[{\"_id\":\"0294781\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f4694fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services Provided\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"37e8d93\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c2ae071\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"6af54c3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"6222aea\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d8712bb\"}],\"pp_display_conditions\":[{\"_id\":\"ffbb970\"}],\"flex_direction\":\"row\",\"flex_gap\":{\"column\":\"20\",\"row\":\"20\",\"isLinked\":true,\"unit\":\"px\",\"size\":20},\"css_classes\":\"ser\",\"flex_justify_content\":\"center\",\"flex_gap_tablet_extra\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap\":\"wrap\"},\"elements\":[{\"id\":\"cb1cda9\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"86fd9e9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Care-Plans-and-Treatments-agv.jpg\",\"id\":988,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b001f5\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/care-plans\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2a637c9\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Care Plans \",\"description_text\":\"We develop individualized, person-centered care plans based on each client\\u2019s needs, preferences, and goals. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f2f9d27\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"c033fd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Daily-Health-Care-Monitoring-ag.jpg\",\"id\":1092,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"88d7a58\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/daily-health-care-monitoring\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"32d2830\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Daily Health Care Monitoring\",\"description_text\":\"Our trained staff monitor each client\\u2019s general health status daily, including observation of physical condition, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"7a5fbe2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"f743a09\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/69637-1.jpg\",\"id\":213,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"97ff57b\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/meals-breakfast-lunch-snacks\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"8fdedc2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Meals: Breakfast, Lunch, Snacks\",\"description_text\":\"Nutritious meals and snacks are provided daily to support health and wellness.\",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"f488ec7\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"0ee25b2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Medication-Reminders-aa.jpg\",\"id\":217,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"fe807db\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/medication-reminders\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"bed0405\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Medication Reminders\",\"description_text\":\"We provide medication reminders to help clients take their medications as prescribed, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"84fb19e\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor0\"},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8d11c77\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Nursing-Dietary-Counseling-ag.webp\",\"id\":992,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"956a1b1\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/nursing-dietary-counseling\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3c7cfa7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Nursing, Dietary Counseling\",\"description_text\":\"At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3c20dbb\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"dbff597\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"159f05c\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"5efd063\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"css_classes\":\"ser_col\",\"pp_display_conditions\":[{\"_id\":\"68e9023\"}],\"__globals__\":{\"border_color\":\"globals\\/colors?id=astglobalcolor1\"},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"aed0ae3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"ae579e4\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"d44d9a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"\",\"selected_icon\":{\"value\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/arrow-upper-right_7133068.svg\",\"id\":152},\"library\":\"svg\"},\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"background_color\":\"#FCF1E3\",\"border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"14\",\"bottom\":\"14\",\"left\":\"14\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"a8731af\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=astglobalcolor1\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=astglobalcolor4\",\"button_background_hover_color\":\"globals\\/colors?id=astglobalcolor0\"},\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/personal-caregiving\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"aefe991\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Personal Caregiving\",\"description_text\":\"Compassionate assistance with activities of daily living such as grooming, toileting, dressing, \",\"title_size\":\"h5\",\"text_align\":\"start\",\"pp_display_conditions\":[{\"_id\":\"adb6247\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"e9fc70f\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4f8e7af\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"e8ff2d3\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"4cdf716\"}],\"pp_display_conditions\":[{\"_id\":\"53f9194\"}],\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"963a95d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Services\",\"link\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/services\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"80162ec\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8966155\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"010ab0a\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"2db2d76\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"3bfa4e9\"}],\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"9f8245a\"}]},\"elements\":[{\"id\":\"0e7ed69\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/sociel-activiti-ab.jpg\",\"id\":278,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"c0888e3\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"f8615e7\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"575c0fc\"}],\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.82,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"9135a95\"}],\"__globals__\":{\"background_color\":\"globals\\/colors?id=astglobalcolor0\",\"background_overlay_color\":\"globals\\/colors?id=astglobalcolor0\"},\"padding_mobile_extra\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f03334\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"animation\":\"zoomIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"6155b75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Social Activities\",\"align\":\"center\",\"pp_display_conditions\":[{\"_id\":\"60ccc7b\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"42ca659\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"flex_direction\":\"row\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db4f7fc\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"16d4a47\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"643d025\"}],\"pp_display_conditions\":[{\"_id\":\"fa189e1\"}],\"flex_justify_content_tablet\":\"center\",\"flex_gap_tablet\":{\"column\":\"18\",\"row\":\"18\",\"isLinked\":true,\"unit\":\"px\",\"size\":18},\"flex_wrap_tablet\":\"wrap\"},\"elements\":[{\"id\":\"2e28e3b\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"ffd5b99\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Arts and Crafts\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Daily Exercise\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6c9f4d9\"},{\"text\":\"Educational Learning Programs\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4365f2b\"},{\"text\":\"Field Trips (Local Outings)\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"6fe9b1d\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"8bf6fa0\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"c81c1d6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Gardening\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Holidays and Birthday Celebrations\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"4adb7ad\"},{\"text\":\"Live Entertainment\\/Performers\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"fef4c08\"},{\"text\":\"Mental Stimulation Games\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"2df808a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"a97bfb2\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":32,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":48.5,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"2cd5f87\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"15e53ad\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"f210520\"}],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"fccd7e3\"}],\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=astglobalcolor4\"}},\"elements\":[{\"id\":\"4011b98\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Movies\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Outdoor BBQ\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"aeca639\"},{\"text\":\"Socialization\\/Interactions\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7fb8ec4\"},{\"text\":\"Therapeutic Activities\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"c787b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor4\",\"text_color\":\"globals\\/colors?id=astglobalcolor4\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"d9f444d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"ac4765f\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"fab3048\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"91c3e97\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"af38970\"}],\"flex_direction_tablet\":\"column\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"b08d9d3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"0c11622\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"622f496\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"d122ecf\"}],\"pp_display_conditions\":[{\"_id\":\"01163ea\"}],\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33027b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Yoga-For-The-Brain-aa.jpg\",\"id\":232,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"d229e44\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"a2c8a4a\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"9a951c9\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"88fa417\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"8693a4a\"}],\"pp_display_conditions\":[{\"_id\":\"e3f24a5\"}],\"flex_justify_content\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"ba8f080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Day Program Activities\",\"pp_display_conditions\":[{\"_id\":\"6ca66f0\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dbec3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Art Therapy, Painting and Expressive Drawing\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"7c6f2a6\"},{\"text\":\"Yoga For The Brain\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"e04c888\"},{\"text\":\"Low impact Aerobics\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"0638c38\"},{\"text\":\"Mindfulness Relaxation Exercises\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"b04e9db\"},{\"text\":\"Personalized care and support\",\"selected_icon\":{\"value\":\"fas fa-angle-double-right\",\"library\":\"fa-solid\"},\"_id\":\"415c0a5\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"pp_display_conditions\":[{\"_id\":\"70a5c61\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=astglobalcolor1\"},\"icon_self_vertical_align\":\"flex-start\",\"icon_vertical_offset\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":false}]');
INSERT INTO `wpo_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(11184, 356, '_elementor_page_settings', 'a:0:{}'),
(11185, 356, '_elementor_controls_usage', 'a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:9:\"container\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:24:\"section_layout_container\";a:5:{s:14:\"flex_direction\";i:3;s:13:\"content_width\";i:2;s:5:\"width\";i:2;s:20:\"flex_justify_content\";i:1;s:8:\"flex_gap\";i:1;}}s:5:\"style\";a:1:{s:45:\"section_powerpack_elements_background_effects\";a:1:{s:34:\"pp_animated_gradient_bg_color_list\";i:3;}}s:8:\"advanced\";a:3:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:3;}s:15:\"section_effects\";a:1:{s:9:\"animation\";i:2;}s:14:\"section_layout\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:35:\"section_powerpack_elements_advanced\";a:1:{s:21:\"pp_display_conditions\";i:1;}}}}}'),
(11171, 1147, '_elementor_page_settings', 'a:0:{}'),
(11176, 1148, '_elementor_edit_mode', 'builder'),
(11177, 1148, '_elementor_template_type', 'wp-page'),
(11178, 1148, '_elementor_version', '3.35.0'),
(11179, 1148, '_elementor_pro_version', '3.35.0'),
(11180, 1148, '_elementor_data', '[{\"id\":\"db7bdf8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":20,\"column\":\"20\",\"row\":\"20\",\"isLinked\":true},\"flex_direction_tablet\":\"column\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"db33726\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"de45230\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"99737e4\"}],\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"pp_display_conditions\":[{\"_id\":\"7c67fd7\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}]},\"elements\":[{\"id\":\"6ff3c00\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"f0fb881\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"8b0cf63\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"cefbe1e\"}],\"pp_display_conditions\":[{\"_id\":\"3b8ff60\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInLeft\"},\"elements\":[{\"id\":\"844d006\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/mrarif.me\\/oasis\\/wp-content\\/uploads\\/2026\\/02\\/Personal-Caregiving-mus-1.webp\",\"id\":1139,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"pp_display_conditions\":[{\"_id\":\"07af7fb\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7b8e571\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"width_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"width_mobile_extra\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"flex_justify_content\":\"center\",\"pp_animated_gradient_bg_color_list\":[{\"pp_animated_gradient_bg_color\":\"#F6AD1F\",\"_id\":\"4c61bab\"},{\"pp_animated_gradient_bg_color\":\"#F7496A\",\"_id\":\"938582f\"},{\"pp_animated_gradient_bg_color\":\"#565AD8\",\"_id\":\"79089c1\"}],\"pp_display_conditions\":[{\"_id\":\"6051a30\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"animation\":\"fadeInRight\"},\"elements\":[{\"id\":\"33d9ed7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Caregiving\",\"pp_display_conditions\":[{\"_id\":\"06b0fa4\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"daf52ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.<\\/p>\",\"pp_display_conditions\":[{\"_id\":\"fa2a770\",\"pp_condition_date_time_before_value\":\"2026-02-08 07:23\"}],\"pp_elements_tooltip_content\":\"Tooltip Content\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":false}]'),
(11094, 1140, '_elementor_page_settings', 'a:0:{}');

-- --------------------------------------------------------

--
-- Table structure for table `wpo_posts`
--

CREATE TABLE `wpo_posts` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `post_author` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(255) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_posts`
--

INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2026-02-02 09:58:56', '2026-02-02 09:58:56', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'trash', 'open', 'open', '', 'hello-world__trashed', '', '', '2026-02-05 10:01:52', '2026-02-05 10:01:52', '', 0, 'https://mrarif.me/oasis/?p=1', 0, 'post', '', 1),
(2, 1, '2026-02-02 09:58:56', '2026-02-02 09:58:56', '<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\">\n<!-- wp:paragraph -->\n<p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p>\n<!-- /wp:paragraph -->\n</blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://mrarif.me/oasis/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2026-02-02 09:58:56', '2026-02-02 09:58:56', '', 0, 'https://mrarif.me/oasis/?page_id=2', 0, 'page', '', 0),
(3, 1, '2026-02-02 09:58:56', '2026-02-02 09:58:56', '<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we are</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://mrarif.me/oasis.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Comments</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Media</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Cookies</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\n<!-- /wp:paragraph -->\n<!-- wp:paragraph -->\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\n<!-- /wp:paragraph -->\n<!-- wp:heading -->\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\n<!-- /wp:heading -->\n<!-- wp:paragraph -->\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->\n', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2026-02-02 09:58:56', '2026-02-02 09:58:56', '', 0, 'https://mrarif.me/oasis/?page_id=3', 0, 'page', '', 0),
(4, 0, '2026-02-02 09:58:56', '2026-02-02 09:58:56', '<!-- wp:page-list /-->', 'Navigation', '', 'publish', 'closed', 'closed', '', 'navigation', '', '', '2026-02-02 09:58:56', '2026-02-02 09:58:56', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/navigation/', 0, 'wp_navigation', '', 0),
(7, 1, '2026-02-02 10:03:31', '2026-02-02 10:03:31', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2026-02-08 13:27:29', '2026-02-08 13:27:29', '', 0, 'https://mrarif.me/oasis/?p=7', 0, 'elementor_library', '', 0),
(11, 1, '2026-02-02 10:22:07', '2026-02-02 10:22:07', '{\"version\": 3, \"isGlobalStylesUserThemeJSON\": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-astra-child', '', '', '2026-02-02 10:22:07', '2026-02-02 10:22:07', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/wp-global-styles-astra-child/', 0, 'wp_global_styles', '', 0),
(12, 1, '2026-02-02 10:26:43', '2026-02-02 10:26:43', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2026-02-19 07:45:00', '2026-02-19 07:45:00', '', 0, 'https://mrarif.me/oasis/?page_id=12', 0, 'page', '', 0),
(13, 1, '2026-02-02 10:26:43', '2026-02-02 10:26:43', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:26:43', '2026-02-02 10:26:43', '', 12, 'https://mrarif.me/oasis/?p=13', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(14, 1, '2026-02-02 10:36:19', '2026-02-02 10:36:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h2>Oasis Health Care Community</h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		<p>To provide compassionate, high-quality Oasis Health Care Community that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2026-02-14 07:14:30', '2026-02-14 07:14:30', '', 0, 'https://mrarif.me/oasis/?page_id=14', 0, 'page', '', 0),
(15, 1, '2026-02-02 10:36:19', '2026-02-02 10:36:19', '', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-02 10:36:19', '2026-02-02 10:36:19', '', 14, 'https://mrarif.me/oasis/?p=15', 0, 'revision', '', 0),
(16, 1, '2026-02-02 10:39:36', '2026-02-02 10:39:36', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2026-02-19 07:18:39', '2026-02-19 07:18:39', '', 0, 'https://mrarif.me/oasis/?page_id=16', 0, 'page', '', 0),
(17, 1, '2026-02-02 10:39:36', '2026-02-02 10:39:36', '', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-02 10:39:36', '2026-02-02 10:39:36', '', 16, 'https://mrarif.me/oasis/?p=17', 0, 'revision', '', 0),
(18, 1, '2026-02-02 10:40:42', '2026-02-02 10:40:42', '<h2>Our Communities</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Communities', '', 'publish', 'closed', 'closed', '', 'our-communities', '', '', '2026-02-16 19:57:58', '2026-02-16 19:57:58', '', 0, 'https://mrarif.me/oasis/?page_id=18', 0, 'page', '', 0),
(19, 1, '2026-02-02 10:40:42', '2026-02-02 10:40:42', '', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-02 10:40:42', '2026-02-02 10:40:42', '', 18, 'https://mrarif.me/oasis/?p=19', 0, 'revision', '', 0),
(20, 1, '2026-02-02 10:41:02', '2026-02-02 10:41:02', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'publish', 'closed', 'closed', '', 'our-team', '', '', '2026-02-19 07:11:00', '2026-02-19 07:11:00', '', 0, 'https://mrarif.me/oasis/?page_id=20', 0, 'page', '', 0),
(21, 1, '2026-02-02 10:41:02', '2026-02-02 10:41:02', '', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-02 10:41:02', '2026-02-02 10:41:02', '', 20, 'https://mrarif.me/oasis/?p=21', 0, 'revision', '', 0),
(22, 1, '2026-02-02 10:41:17', '2026-02-02 10:41:17', '', 'Blogs', '', 'publish', 'closed', 'closed', '', 'blogs', '', '', '2026-02-02 10:41:17', '2026-02-02 10:41:17', '', 0, 'https://mrarif.me/oasis/?page_id=22', 0, 'page', '', 0),
(23, 1, '2026-02-02 10:41:17', '2026-02-02 10:41:17', '', 'Blogs', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2026-02-02 10:41:17', '2026-02-02 10:41:17', '', 22, 'https://mrarif.me/oasis/?p=23', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(24, 1, '2026-02-02 10:41:30', '2026-02-02 10:41:30', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'publish', 'closed', 'closed', '', 'careers', '', '', '2026-02-19 07:13:51', '2026-02-19 07:13:51', '', 0, 'https://mrarif.me/oasis/?page_id=24', 0, 'page', '', 0),
(25, 1, '2026-02-02 10:41:30', '2026-02-02 10:41:30', '', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-02 10:41:30', '2026-02-02 10:41:30', '', 24, 'https://mrarif.me/oasis/?p=25', 0, 'revision', '', 0),
(26, 1, '2026-02-02 10:41:48', '2026-02-02 10:41:48', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2026-02-09 08:41:03', '2026-02-09 08:41:03', '', 0, 'https://mrarif.me/oasis/?page_id=26', 0, 'page', '', 0),
(27, 1, '2026-02-02 10:41:48', '2026-02-02 10:41:48', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-02 10:41:48', '2026-02-02 10:41:48', '', 26, 'https://mrarif.me/oasis/?p=27', 0, 'revision', '', 0),
(30, 1, '2026-02-02 10:42:53', '0000-00-00 00:00:00', '', 'Home', '', 'draft', 'closed', 'closed', '', '', '', '', '2026-02-02 10:42:53', '0000-00-00 00:00:00', '', 0, 'https://mrarif.me/oasis/?p=30', 1, 'nav_menu_item', '', 0),
(31, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '31', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=31', 2, 'nav_menu_item', '', 0),
(32, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '32', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=32', 18, 'nav_menu_item', '', 0),
(33, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '33', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=33', 16, 'nav_menu_item', '', 0),
(34, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '34', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=34', 19, 'nav_menu_item', '', 0),
(35, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '35', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=35', 1, 'nav_menu_item', '', 0),
(36, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '36', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=36', 11, 'nav_menu_item', '', 0),
(37, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '37', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=37', 15, 'nav_menu_item', '', 0),
(38, 1, '2026-02-14 07:54:02', '2026-02-02 10:43:37', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=38', 3, 'nav_menu_item', '', 0),
(39, 1, '2026-02-02 10:48:48', '2026-02-02 10:48:48', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-02-02 10:48:48', '2026-02-02 10:48:48', '', 7, 'https://mrarif.me/oasis/?p=39', 0, 'revision', '', 0),
(41, 1, '2026-02-02 10:53:57', '2026-02-02 10:53:57', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:53:57', '2026-02-02 10:53:57', '', 12, 'https://mrarif.me/oasis/?p=41', 0, 'revision', '', 0),
(42, 1, '2026-02-02 10:53:57', '2026-02-02 10:53:57', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:53:57', '2026-02-02 10:53:57', '', 12, 'https://mrarif.me/oasis/?p=42', 0, 'revision', '', 0),
(43, 1, '2026-02-02 10:53:57', '2026-02-02 10:53:57', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:53:57', '2026-02-02 10:53:57', '', 12, 'https://mrarif.me/oasis/?p=43', 0, 'revision', '', 0),
(44, 1, '2026-02-02 10:56:59', '2026-02-02 10:56:59', '', 'home banner a', '', 'inherit', 'open', 'closed', '', 'home-banner-a', '', '', '2026-02-02 10:56:59', '2026-02-02 10:56:59', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/home-banner-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(45, 1, '2026-02-02 10:57:56', '2026-02-02 10:57:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:57:56', '2026-02-02 10:57:56', '', 12, 'https://mrarif.me/oasis/?p=45', 0, 'revision', '', 0),
(46, 1, '2026-02-02 10:57:56', '2026-02-02 10:57:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:57:56', '2026-02-02 10:57:56', '', 12, 'https://mrarif.me/oasis/?p=46', 0, 'revision', '', 0),
(47, 1, '2026-02-02 10:57:57', '2026-02-02 10:57:57', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 10:57:57', '2026-02-02 10:57:57', '', 12, 'https://mrarif.me/oasis/?p=47', 0, 'revision', '', 0),
(48, 1, '2026-02-02 11:00:33', '2026-02-02 11:00:33', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:00:33', '2026-02-02 11:00:33', '', 12, 'https://mrarif.me/oasis/?p=48', 0, 'revision', '', 0),
(49, 1, '2026-02-02 11:00:34', '2026-02-02 11:00:34', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:00:34', '2026-02-02 11:00:34', '', 12, 'https://mrarif.me/oasis/?p=49', 0, 'revision', '', 0),
(50, 1, '2026-02-02 11:00:34', '2026-02-02 11:00:34', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:00:34', '2026-02-02 11:00:34', '', 12, 'https://mrarif.me/oasis/?p=50', 0, 'revision', '', 0),
(51, 1, '2026-02-02 11:32:48', '2026-02-02 11:32:48', '{\n    \"astra-settings[body-font-family]\": {\n        \"value\": \"\'DM Sans\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:28:48\"\n    },\n    \"astra-settings[font-size-body]\": {\n        \"value\": {\n            \"desktop\": 18,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:30:28\"\n    },\n    \"astra-settings[headings-font-family]\": {\n        \"value\": \"\'Open Sans\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:30:52\"\n    },\n    \"astra-settings[body-font-variant]\": {\n        \"value\": \"300,400,500\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:31:52\"\n    },\n    \"astra-settings[headings-font-variant]\": {\n        \"value\": \"500,600,700,800\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:31:52\"\n    },\n    \"astra-settings[font-size-h1]\": {\n        \"value\": {\n            \"desktop\": 50,\n            \"tablet\": 30,\n            \"mobile\": 30,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:31:52\"\n    },\n    \"astra-settings[font-size-h2]\": {\n        \"value\": {\n            \"desktop\": 40,\n            \"tablet\": 25,\n            \"mobile\": 25,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:48\"\n    },\n    \"astra-settings[font-size-h3]\": {\n        \"value\": {\n            \"desktop\": 35,\n            \"tablet\": 20,\n            \"mobile\": 20,\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:48\"\n    },\n    \"astra-settings[font-size-h4]\": {\n        \"value\": {\n            \"desktop\": 30,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:48\"\n    },\n    \"astra-settings[font-size-h5]\": {\n        \"value\": {\n            \"desktop\": 24,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:48\"\n    },\n    \"astra-settings[font-size-h6]\": {\n        \"value\": {\n            \"desktop\": 20,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:48\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'ee798ffd-127b-42b4-acad-32ef48980e48', '', '', '2026-02-02 11:32:48', '2026-02-02 11:32:48', '', 0, 'https://mrarif.me/oasis/?p=51', 0, 'customize_changeset', '', 0),
(52, 1, '2026-02-02 11:34:15', '2026-02-02 11:34:15', '{\n    \"astra-settings[site-layout-outside-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-5)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:51\"\n    },\n    \"astra-settings[content-bg-obj-responsive]\": {\n        \"value\": {\n            \"desktop\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"tablet\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            },\n            \"mobile\": {\n                \"background-color\": \"var(--ast-global-color-4)\",\n                \"background-image\": \"\",\n                \"background-repeat\": \"repeat\",\n                \"background-position\": \"center center\",\n                \"background-size\": \"auto\",\n                \"background-attachment\": \"scroll\",\n                \"background-type\": \"color\",\n                \"background-media\": \"\",\n                \"overlay-type\": \"\",\n                \"overlay-color\": \"\",\n                \"overlay-opacity\": \"\",\n                \"overlay-gradient\": \"\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:32:51\"\n    },\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#108490\",\n                \"#ef4922\",\n                \"#000000\",\n                \"#373737\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#111111\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:34:15\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#108490\",\n                    \"#ef4922\",\n                    \"#000000\",\n                    \"#373737\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#111111\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:34:15\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '4403cc4e-3850-40b3-a396-a2bc003df5ee', '', '', '2026-02-02 11:34:15', '2026-02-02 11:34:15', '', 0, 'https://mrarif.me/oasis/?p=52', 0, 'customize_changeset', '', 0),
(53, 1, '2026-02-02 11:35:00', '2026-02-02 11:35:00', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#108490\",\n                \"#ef4922\",\n                \"#000000\",\n                \"#373737\",\n                \"#FFFFFF\",\n                \"#F0F5FA\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#fec010\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:35:00\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#108490\",\n                    \"#ef4922\",\n                    \"#000000\",\n                    \"#373737\",\n                    \"#FFFFFF\",\n                    \"#F0F5FA\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#fec010\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:35:00\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'c99aed68-7501-4880-8a0e-c75cacdcae92', '', '', '2026-02-02 11:35:00', '2026-02-02 11:35:00', '', 0, 'https://mrarif.me/oasis/?p=53', 0, 'customize_changeset', '', 0),
(54, 1, '2026-02-02 11:35:28', '2026-02-02 11:35:28', '{\n    \"astra-settings[link-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:35:11\"\n    },\n    \"astra-settings[theme-color]\": {\n        \"value\": \"#106e79\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:35:28\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '7dd3a382-df38-4ba1-8a49-6f2ffacda3ae', '', '', '2026-02-02 11:35:28', '2026-02-02 11:35:28', '', 0, 'https://mrarif.me/oasis/?p=54', 0, 'customize_changeset', '', 0),
(55, 1, '2026-02-02 11:36:08', '2026-02-02 11:36:08', '{\n    \"astra-settings[button-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:08\"\n    },\n    \"astra-settings[button-h-color]\": {\n        \"value\": \"var(--ast-global-color-4)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:08\"\n    },\n    \"astra-settings[button-bg-color]\": {\n        \"value\": \"var(--ast-global-color-1)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:08\"\n    },\n    \"astra-settings[button-bg-h-color]\": {\n        \"value\": \"var(--ast-global-color-0)\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:08\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '06c46e0e-2b64-4cb7-92b7-c37704b4404b', '', '', '2026-02-02 11:36:08', '2026-02-02 11:36:08', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/06c46e0e-2b64-4cb7-92b7-c37704b4404b/', 0, 'customize_changeset', '', 0),
(56, 1, '2026-02-02 11:36:40', '2026-02-02 11:36:40', '{\n    \"astra-settings[theme-button-padding]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"18\",\n                \"right\": \"36\",\n                \"bottom\": \"18\",\n                \"left\": \"36\"\n            },\n            \"tablet\": {\n                \"top\": 14,\n                \"right\": 28,\n                \"bottom\": 14,\n                \"left\": 28\n            },\n            \"mobile\": {\n                \"top\": 12,\n                \"right\": 24,\n                \"bottom\": 12,\n                \"left\": 24\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:40\"\n    },\n    \"astra-settings[theme-button-border-group-border-size]\": {\n        \"value\": {\n            \"top\": \"\",\n            \"right\": \"\",\n            \"bottom\": \"\",\n            \"left\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:40\"\n    },\n    \"astra-settings[button-radius-fields]\": {\n        \"value\": {\n            \"desktop\": {\n                \"top\": \"30\",\n                \"right\": \"30\",\n                \"bottom\": \"30\",\n                \"left\": \"30\"\n            },\n            \"tablet\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"mobile\": {\n                \"top\": \"\",\n                \"right\": \"\",\n                \"bottom\": \"\",\n                \"left\": \"\"\n            },\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:36:40\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '2a48cfa2-131a-4257-8e59-7bb26c997896', '', '', '2026-02-02 11:36:40', '2026-02-02 11:36:40', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/2a48cfa2-131a-4257-8e59-7bb26c997896/', 0, 'customize_changeset', '', 0),
(57, 1, '2026-02-02 11:37:04', '2026-02-02 11:37:04', '{\n    \"astra-settings[font-family-button]\": {\n        \"value\": \"\'Poppins\', sans-serif\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:37:04\"\n    },\n    \"astra-settings[font-size-button]\": {\n        \"value\": {\n            \"desktop\": 16,\n            \"tablet\": \"\",\n            \"mobile\": \"\",\n            \"desktop-unit\": \"px\",\n            \"tablet-unit\": \"px\",\n            \"mobile-unit\": \"px\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:37:04\"\n    },\n    \"astra-settings[font-extras-button]\": {\n        \"value\": {\n            \"line-height\": 1,\n            \"line-height-unit\": \"em\",\n            \"letter-spacing\": \"1\",\n            \"letter-spacing-unit\": \"px\",\n            \"text-transform\": \"\",\n            \"text-decoration\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 11:37:04\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'b07c0722-0720-4472-8059-cbdea36e8a7b', '', '', '2026-02-02 11:37:04', '2026-02-02 11:37:04', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/b07c0722-0720-4472-8059-cbdea36e8a7b/', 0, 'customize_changeset', '', 0),
(58, 1, '2026-02-02 11:37:54', '2026-02-02 11:37:54', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-02-02 11:37:54', '2026-02-02 11:37:54', '', 7, 'https://mrarif.me/oasis/?p=58', 0, 'revision', '', 0),
(59, 1, '2026-02-02 11:37:55', '2026-02-02 11:37:55', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-02-02 11:37:55', '2026-02-02 11:37:55', '', 7, 'https://mrarif.me/oasis/?p=59', 0, 'revision', '', 0),
(60, 1, '2026-02-02 11:38:45', '2026-02-02 11:38:45', '', 'oasis-faveiocn-a', '', 'inherit', 'open', 'closed', '', 'oasis-faveiocn-a', '', '', '2026-02-02 11:38:45', '2026-02-02 11:38:45', '', 7, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-faveiocn-a.png', 0, 'attachment', 'image/png', 0),
(61, 1, '2026-02-02 11:38:47', '2026-02-02 11:38:47', '', 'oasis-logo-a', '', 'inherit', 'open', 'closed', '', 'oasis-logo-a', '', '', '2026-02-02 11:38:47', '2026-02-02 11:38:47', '', 7, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png', 0, 'attachment', 'image/png', 0),
(62, 1, '2026-02-02 11:40:08', '2026-02-02 11:40:08', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-02-02 11:40:08', '2026-02-02 11:40:08', '', 7, 'https://mrarif.me/oasis/?p=62', 0, 'revision', '', 0),
(294, 1, '2026-02-03 06:11:51', '2026-02-03 06:11:51', '', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:11:51', '2026-02-03 06:11:51', '', 291, 'https://mrarif.me/oasis/?p=294', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(307, 1, '2026-02-03 06:46:19', '2026-02-03 06:46:19', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							© 2026. All Rights Reserved. Website Developed by Devrivo', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:46:19', '2026-02-03 06:46:19', '', 301, 'https://mrarif.me/oasis/?p=307', 0, 'revision', '', 0),
(305, 1, '2026-02-03 06:40:48', '2026-02-03 06:40:48', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:40:48', '2026-02-03 06:40:48', '', 301, 'https://mrarif.me/oasis/?p=305', 0, 'revision', '', 0),
(308, 1, '2026-02-03 06:47:10', '2026-02-03 06:47:10', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							© 2026. All Rights Reserved. Website Developed by Devrivo', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:47:10', '2026-02-03 06:47:10', '', 301, 'https://mrarif.me/oasis/?p=308', 0, 'revision', '', 0),
(302, 1, '2026-02-03 06:34:32', '2026-02-03 06:34:32', '', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:34:32', '2026-02-03 06:34:32', '', 301, 'https://mrarif.me/oasis/?p=302', 0, 'revision', '', 0),
(72, 1, '2026-02-02 11:58:38', '2026-02-02 11:58:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:58:38', '2026-02-02 11:58:38', '', 12, 'https://mrarif.me/oasis/?p=72', 0, 'revision', '', 0),
(73, 1, '2026-02-02 11:58:38', '2026-02-02 11:58:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:58:38', '2026-02-02 11:58:38', '', 12, 'https://mrarif.me/oasis/?p=73', 0, 'revision', '', 0),
(74, 1, '2026-02-02 11:58:38', '2026-02-02 11:58:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:58:38', '2026-02-02 11:58:38', '', 12, 'https://mrarif.me/oasis/?p=74', 0, 'revision', '', 0),
(75, 1, '2026-02-02 11:59:02', '2026-02-02 11:59:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:59:02', '2026-02-02 11:59:02', '', 12, 'https://mrarif.me/oasis/?p=75', 0, 'revision', '', 0),
(76, 1, '2026-02-02 11:59:02', '2026-02-02 11:59:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:59:02', '2026-02-02 11:59:02', '', 12, 'https://mrarif.me/oasis/?p=76', 0, 'revision', '', 0),
(77, 1, '2026-02-02 11:59:02', '2026-02-02 11:59:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 11:59:02', '2026-02-02 11:59:02', '', 12, 'https://mrarif.me/oasis/?p=77', 0, 'revision', '', 0),
(313, 1, '2026-02-03 06:53:05', '2026-02-03 06:53:05', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:53:05', '2026-02-03 06:53:05', '', 301, 'https://mrarif.me/oasis/?p=313', 0, 'revision', '', 0),
(311, 1, '2026-02-03 06:50:36', '2026-02-03 06:50:36', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n				© 2026. All Rights Reserved. Website Developed by Devrivo\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by Devrivo', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:50:36', '2026-02-03 06:50:36', '', 301, 'https://mrarif.me/oasis/?p=311', 0, 'revision', '', 0),
(93, 1, '2026-02-02 12:21:39', '2026-02-02 12:21:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:39', '2026-02-02 12:21:39', '', 12, 'https://mrarif.me/oasis/?p=93', 0, 'revision', '', 0),
(91, 1, '2026-02-02 12:21:38', '2026-02-02 12:21:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:38', '2026-02-02 12:21:38', '', 12, 'https://mrarif.me/oasis/?p=91', 0, 'revision', '', 0),
(92, 1, '2026-02-02 12:21:38', '2026-02-02 12:21:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:38', '2026-02-02 12:21:38', '', 12, 'https://mrarif.me/oasis/?p=92', 0, 'revision', '', 0),
(94, 1, '2026-02-02 12:21:52', '2026-02-02 12:21:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:52', '2026-02-02 12:21:52', '', 12, 'https://mrarif.me/oasis/?p=94', 0, 'revision', '', 0),
(95, 1, '2026-02-02 12:21:52', '2026-02-02 12:21:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:52', '2026-02-02 12:21:52', '', 12, 'https://mrarif.me/oasis/?p=95', 0, 'revision', '', 0),
(96, 1, '2026-02-02 12:21:52', '2026-02-02 12:21:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:21:52', '2026-02-02 12:21:52', '', 12, 'https://mrarif.me/oasis/?p=96', 0, 'revision', '', 0),
(97, 1, '2026-02-02 12:22:26', '2026-02-02 12:22:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:22:26', '2026-02-02 12:22:26', '', 12, 'https://mrarif.me/oasis/?p=97', 0, 'revision', '', 0),
(98, 1, '2026-02-02 12:22:26', '2026-02-02 12:22:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:22:26', '2026-02-02 12:22:26', '', 12, 'https://mrarif.me/oasis/?p=98', 0, 'revision', '', 0),
(99, 1, '2026-02-02 12:22:27', '2026-02-02 12:22:27', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:22:27', '2026-02-02 12:22:27', '', 12, 'https://mrarif.me/oasis/?p=99', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(312, 1, '2026-02-03 06:51:34', '2026-02-03 06:51:34', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:51:34', '2026-02-03 06:51:34', '', 301, 'https://mrarif.me/oasis/?p=312', 0, 'revision', '', 0),
(309, 1, '2026-02-03 06:48:19', '2026-02-03 06:48:19', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							© 2026. All Rights Reserved. Website Developed by Devrivo', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:48:19', '2026-02-03 06:48:19', '', 301, 'https://mrarif.me/oasis/?p=309', 0, 'revision', '', 0),
(106, 1, '2026-02-02 12:40:06', '2026-02-02 12:40:06', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:40:06', '2026-02-02 12:40:06', '', 12, 'https://mrarif.me/oasis/?p=106', 0, 'revision', '', 0),
(107, 1, '2026-02-02 12:40:06', '2026-02-02 12:40:06', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:40:06', '2026-02-02 12:40:06', '', 12, 'https://mrarif.me/oasis/?p=107', 0, 'revision', '', 0),
(108, 1, '2026-02-02 12:40:07', '2026-02-02 12:40:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:40:07', '2026-02-02 12:40:07', '', 12, 'https://mrarif.me/oasis/?p=108', 0, 'revision', '', 0),
(109, 1, '2026-02-02 12:48:57', '2026-02-02 12:48:57', '', 'About Oasis Adult Day Care aa', '', 'inherit', 'open', 'closed', '', 'about-oasis-adult-day-care-aa', '', '', '2026-02-02 12:48:57', '2026-02-02 12:48:57', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(110, 1, '2026-02-02 12:49:28', '2026-02-02 12:49:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:28', '2026-02-02 12:49:28', '', 12, 'https://mrarif.me/oasis/?p=110', 0, 'revision', '', 0),
(111, 1, '2026-02-02 12:49:28', '2026-02-02 12:49:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:28', '2026-02-02 12:49:28', '', 12, 'https://mrarif.me/oasis/?p=111', 0, 'revision', '', 0),
(115, 1, '2026-02-02 12:49:43', '2026-02-02 12:49:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:43', '2026-02-02 12:49:43', '', 12, 'https://mrarif.me/oasis/?p=115', 0, 'revision', '', 0),
(112, 1, '2026-02-02 12:49:29', '2026-02-02 12:49:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:29', '2026-02-02 12:49:29', '', 12, 'https://mrarif.me/oasis/?p=112', 0, 'revision', '', 0),
(113, 1, '2026-02-02 12:49:43', '2026-02-02 12:49:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:43', '2026-02-02 12:49:43', '', 12, 'https://mrarif.me/oasis/?p=113', 0, 'revision', '', 0),
(114, 1, '2026-02-02 12:49:43', '2026-02-02 12:49:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"#\">\n									Learn More\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 12:49:43', '2026-02-02 12:49:43', '', 12, 'https://mrarif.me/oasis/?p=114', 0, 'revision', '', 0),
(120, 1, '2026-02-02 13:06:40', '2026-02-02 13:06:40', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:06:40', '2026-02-02 13:06:40', '', 12, 'https://mrarif.me/oasis/?p=120', 0, 'revision', '', 0),
(117, 1, '2026-02-02 13:06:28', '2026-02-02 13:06:28', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#108490\",\n                \"#ef4922\",\n                \"#000000\",\n                \"#373737\",\n                \"#FFFFFF\",\n                \"#fef4f1\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#fec010\"\n            ],\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 13:06:28\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#108490\",\n                    \"#ef4922\",\n                    \"#000000\",\n                    \"#373737\",\n                    \"#FFFFFF\",\n                    \"#fef4f1\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#fec010\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": true\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-02 13:06:28\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'e0968104-9ffd-48c4-8874-3a28abf7f6ab', '', '', '2026-02-02 13:06:28', '2026-02-02 13:06:28', '', 0, 'https://mrarif.me/oasis/index.php/2026/02/02/e0968104-9ffd-48c4-8874-3a28abf7f6ab/', 0, 'customize_changeset', '', 0),
(118, 1, '2026-02-02 13:06:39', '2026-02-02 13:06:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:06:39', '2026-02-02 13:06:39', '', 12, 'https://mrarif.me/oasis/?p=118', 0, 'revision', '', 0),
(119, 1, '2026-02-02 13:06:39', '2026-02-02 13:06:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:06:39', '2026-02-02 13:06:39', '', 12, 'https://mrarif.me/oasis/?p=119', 0, 'revision', '', 0),
(121, 1, '2026-02-02 13:10:02', '2026-02-02 13:10:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:10:02', '2026-02-02 13:10:02', '', 12, 'https://mrarif.me/oasis/?p=121', 0, 'revision', '', 0),
(122, 1, '2026-02-02 13:10:02', '2026-02-02 13:10:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:10:02', '2026-02-02 13:10:02', '', 12, 'https://mrarif.me/oasis/?p=122', 0, 'revision', '', 0),
(123, 1, '2026-02-02 13:10:02', '2026-02-02 13:10:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:10:02', '2026-02-02 13:10:02', '', 12, 'https://mrarif.me/oasis/?p=123', 0, 'revision', '', 0),
(124, 1, '2026-02-02 13:10:38', '2026-02-02 13:10:38', '', 'schedule_8302424', '', 'inherit', 'open', 'closed', '', 'schedule_8302424', '', '', '2026-02-02 13:10:38', '2026-02-02 13:10:38', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/schedule_8302424.svg', 0, 'attachment', 'image/svg+xml', 0),
(125, 1, '2026-02-02 13:11:24', '2026-02-02 13:11:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:24', '2026-02-02 13:11:24', '', 12, 'https://mrarif.me/oasis/?p=125', 0, 'revision', '', 0),
(126, 1, '2026-02-02 13:11:24', '2026-02-02 13:11:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg aria-hidden=\"true\" viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z\"></path></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:24', '2026-02-02 13:11:24', '', 12, 'https://mrarif.me/oasis/?p=126', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(127, 1, '2026-02-02 13:11:24', '2026-02-02 13:11:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:24', '2026-02-02 13:11:24', '', 12, 'https://mrarif.me/oasis/?p=127', 0, 'revision', '', 0),
(128, 1, '2026-02-02 13:11:38', '2026-02-02 13:11:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:38', '2026-02-02 13:11:38', '', 12, 'https://mrarif.me/oasis/?p=128', 0, 'revision', '', 0),
(129, 1, '2026-02-02 13:11:38', '2026-02-02 13:11:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:38', '2026-02-02 13:11:38', '', 12, 'https://mrarif.me/oasis/?p=129', 0, 'revision', '', 0),
(130, 1, '2026-02-02 13:11:39', '2026-02-02 13:11:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:39', '2026-02-02 13:11:39', '', 12, 'https://mrarif.me/oasis/?p=130', 0, 'revision', '', 0),
(131, 1, '2026-02-02 13:11:46', '2026-02-02 13:11:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:46', '2026-02-02 13:11:46', '', 12, 'https://mrarif.me/oasis/?p=131', 0, 'revision', '', 0),
(132, 1, '2026-02-02 13:11:46', '2026-02-02 13:11:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:46', '2026-02-02 13:11:46', '', 12, 'https://mrarif.me/oasis/?p=132', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(133, 1, '2026-02-02 13:11:46', '2026-02-02 13:11:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:11:46', '2026-02-02 13:11:46', '', 12, 'https://mrarif.me/oasis/?p=133', 0, 'revision', '', 0),
(134, 1, '2026-02-02 13:14:59', '2026-02-02 13:14:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:14:59', '2026-02-02 13:14:59', '', 12, 'https://mrarif.me/oasis/?p=134', 0, 'revision', '', 0),
(135, 1, '2026-02-02 13:14:59', '2026-02-02 13:14:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:14:59', '2026-02-02 13:14:59', '', 12, 'https://mrarif.me/oasis/?p=135', 0, 'revision', '', 0),
(136, 1, '2026-02-02 13:14:59', '2026-02-02 13:14:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:14:59', '2026-02-02 13:14:59', '', 12, 'https://mrarif.me/oasis/?p=136', 0, 'revision', '', 0),
(137, 1, '2026-02-02 13:16:32', '2026-02-02 13:16:32', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:16:32', '2026-02-02 13:16:32', '', 12, 'https://mrarif.me/oasis/?p=137', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(138, 1, '2026-02-02 13:16:32', '2026-02-02 13:16:32', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:16:32', '2026-02-02 13:16:32', '', 12, 'https://mrarif.me/oasis/?p=138', 0, 'revision', '', 0),
(139, 1, '2026-02-02 13:16:32', '2026-02-02 13:16:32', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:16:32', '2026-02-02 13:16:32', '', 12, 'https://mrarif.me/oasis/?p=139', 0, 'revision', '', 0),
(140, 1, '2026-02-02 13:17:36', '2026-02-02 13:17:36', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:17:36', '2026-02-02 13:17:36', '', 12, 'https://mrarif.me/oasis/?p=140', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(141, 1, '2026-02-02 13:17:37', '2026-02-02 13:17:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:17:37', '2026-02-02 13:17:37', '', 12, 'https://mrarif.me/oasis/?p=141', 0, 'revision', '', 0),
(142, 1, '2026-02-02 13:17:37', '2026-02-02 13:17:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:17:37', '2026-02-02 13:17:37', '', 12, 'https://mrarif.me/oasis/?p=142', 0, 'revision', '', 0),
(146, 1, '2026-02-02 13:27:10', '2026-02-02 13:27:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:10', '2026-02-02 13:27:10', '', 12, 'https://mrarif.me/oasis/?p=146', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(144, 1, '2026-02-02 13:27:10', '2026-02-02 13:27:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:10', '2026-02-02 13:27:10', '', 12, 'https://mrarif.me/oasis/?p=144', 0, 'revision', '', 0),
(145, 1, '2026-02-02 13:27:10', '2026-02-02 13:27:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:10', '2026-02-02 13:27:10', '', 12, 'https://mrarif.me/oasis/?p=145', 0, 'revision', '', 0),
(147, 1, '2026-02-02 13:27:28', '2026-02-02 13:27:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:28', '2026-02-02 13:27:28', '', 12, 'https://mrarif.me/oasis/?p=147', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(148, 1, '2026-02-02 13:27:28', '2026-02-02 13:27:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:28', '2026-02-02 13:27:28', '', 12, 'https://mrarif.me/oasis/?p=148', 0, 'revision', '', 0),
(149, 1, '2026-02-02 13:27:29', '2026-02-02 13:27:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:27:29', '2026-02-02 13:27:29', '', 12, 'https://mrarif.me/oasis/?p=149', 0, 'revision', '', 0),
(155, 1, '2026-02-02 13:31:28', '2026-02-02 13:31:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:31:28', '2026-02-02 13:31:28', '', 12, 'https://mrarif.me/oasis/?p=155', 0, 'revision', '', 0),
(151, 1, '2026-02-02 13:29:40', '2026-02-02 13:29:40', '', 'right-top_15726559', '', 'inherit', 'open', 'closed', '', 'right-top_15726559', '', '', '2026-02-02 13:29:40', '2026-02-02 13:29:40', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/right-top_15726559.svg', 0, 'attachment', 'image/svg+xml', 0),
(152, 1, '2026-02-02 13:30:22', '2026-02-02 13:30:22', '', 'arrow-upper-right_7133068', '', 'inherit', 'open', 'closed', '', 'arrow-upper-right_7133068', '', '', '2026-02-02 13:30:22', '2026-02-02 13:30:22', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/arrow-upper-right_7133068.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(153, 1, '2026-02-02 13:31:28', '2026-02-02 13:31:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:31:28', '2026-02-02 13:31:28', '', 12, 'https://mrarif.me/oasis/?p=153', 0, 'revision', '', 0),
(154, 1, '2026-02-02 13:31:28', '2026-02-02 13:31:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n									Click here\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:31:28', '2026-02-02 13:31:28', '', 12, 'https://mrarif.me/oasis/?p=154', 0, 'revision', '', 0),
(156, 1, '2026-02-02 13:32:09', '2026-02-02 13:32:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:09', '2026-02-02 13:32:09', '', 12, 'https://mrarif.me/oasis/?p=156', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(157, 1, '2026-02-02 13:32:09', '2026-02-02 13:32:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:09', '2026-02-02 13:32:09', '', 12, 'https://mrarif.me/oasis/?p=157', 0, 'revision', '', 0),
(158, 1, '2026-02-02 13:32:10', '2026-02-02 13:32:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:10', '2026-02-02 13:32:10', '', 12, 'https://mrarif.me/oasis/?p=158', 0, 'revision', '', 0),
(159, 1, '2026-02-02 13:32:36', '2026-02-02 13:32:36', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:36', '2026-02-02 13:32:36', '', 12, 'https://mrarif.me/oasis/?p=159', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(160, 1, '2026-02-02 13:32:36', '2026-02-02 13:32:36', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:36', '2026-02-02 13:32:36', '', 12, 'https://mrarif.me/oasis/?p=160', 0, 'revision', '', 0),
(161, 1, '2026-02-02 13:32:36', '2026-02-02 13:32:36', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:36', '2026-02-02 13:32:36', '', 12, 'https://mrarif.me/oasis/?p=161', 0, 'revision', '', 0),
(162, 1, '2026-02-02 13:32:42', '2026-02-02 13:32:42', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:42', '2026-02-02 13:32:42', '', 12, 'https://mrarif.me/oasis/?p=162', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(163, 1, '2026-02-02 13:32:43', '2026-02-02 13:32:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:43', '2026-02-02 13:32:43', '', 12, 'https://mrarif.me/oasis/?p=163', 0, 'revision', '', 0),
(164, 1, '2026-02-02 13:32:43', '2026-02-02 13:32:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:32:43', '2026-02-02 13:32:43', '', 12, 'https://mrarif.me/oasis/?p=164', 0, 'revision', '', 0),
(165, 1, '2026-02-02 13:33:09', '2026-02-02 13:33:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:33:09', '2026-02-02 13:33:09', '', 12, 'https://mrarif.me/oasis/?p=165', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(166, 1, '2026-02-02 13:33:09', '2026-02-02 13:33:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:33:09', '2026-02-02 13:33:09', '', 12, 'https://mrarif.me/oasis/?p=166', 0, 'revision', '', 0),
(174, 1, '2026-02-02 13:48:19', '2026-02-02 13:48:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:19', '2026-02-02 13:48:19', '', 12, 'https://mrarif.me/oasis/?p=174', 0, 'revision', '', 0),
(167, 1, '2026-02-02 13:33:09', '2026-02-02 13:33:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:33:09', '2026-02-02 13:33:09', '', 12, 'https://mrarif.me/oasis/?p=167', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(168, 1, '2026-02-02 13:39:58', '2026-02-02 13:39:58', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:39:58', '2026-02-02 13:39:58', '', 12, 'https://mrarif.me/oasis/?p=168', 0, 'revision', '', 0),
(169, 1, '2026-02-02 13:39:58', '2026-02-02 13:39:58', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:39:58', '2026-02-02 13:39:58', '', 12, 'https://mrarif.me/oasis/?p=169', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(170, 1, '2026-02-02 13:39:59', '2026-02-02 13:39:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:39:59', '2026-02-02 13:39:59', '', 12, 'https://mrarif.me/oasis/?p=170', 0, 'revision', '', 0),
(171, 1, '2026-02-02 13:48:11', '2026-02-02 13:48:11', '', 'team ahome', '', 'inherit', 'open', 'closed', '', 'team-ahome', '', '', '2026-02-02 13:48:11', '2026-02-02 13:48:11', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg', 0, 'attachment', 'image/jpeg', 0),
(172, 1, '2026-02-02 13:48:19', '2026-02-02 13:48:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:19', '2026-02-02 13:48:19', '', 12, 'https://mrarif.me/oasis/?p=172', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(173, 1, '2026-02-02 13:48:19', '2026-02-02 13:48:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:19', '2026-02-02 13:48:19', '', 12, 'https://mrarif.me/oasis/?p=173', 0, 'revision', '', 0),
(175, 1, '2026-02-02 13:48:40', '2026-02-02 13:48:40', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:40', '2026-02-02 13:48:40', '', 12, 'https://mrarif.me/oasis/?p=175', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(176, 1, '2026-02-02 13:48:40', '2026-02-02 13:48:40', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:40', '2026-02-02 13:48:40', '', 12, 'https://mrarif.me/oasis/?p=176', 0, 'revision', '', 0),
(177, 1, '2026-02-02 13:48:41', '2026-02-02 13:48:41', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:41', '2026-02-02 13:48:41', '', 12, 'https://mrarif.me/oasis/?p=177', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(178, 1, '2026-02-02 13:48:45', '2026-02-02 13:48:45', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:45', '2026-02-02 13:48:45', '', 12, 'https://mrarif.me/oasis/?p=178', 0, 'revision', '', 0),
(179, 1, '2026-02-02 13:48:45', '2026-02-02 13:48:45', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:45', '2026-02-02 13:48:45', '', 12, 'https://mrarif.me/oasis/?p=179', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(180, 1, '2026-02-02 13:48:46', '2026-02-02 13:48:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:48:46', '2026-02-02 13:48:46', '', 12, 'https://mrarif.me/oasis/?p=180', 0, 'revision', '', 0),
(181, 1, '2026-02-02 13:49:07', '2026-02-02 13:49:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:07', '2026-02-02 13:49:07', '', 12, 'https://mrarif.me/oasis/?p=181', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(182, 1, '2026-02-02 13:49:07', '2026-02-02 13:49:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:07', '2026-02-02 13:49:07', '', 12, 'https://mrarif.me/oasis/?p=182', 0, 'revision', '', 0),
(183, 1, '2026-02-02 13:49:07', '2026-02-02 13:49:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:07', '2026-02-02 13:49:07', '', 12, 'https://mrarif.me/oasis/?p=183', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(184, 1, '2026-02-02 13:49:22', '2026-02-02 13:49:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:22', '2026-02-02 13:49:22', '', 12, 'https://mrarif.me/oasis/?p=184', 0, 'revision', '', 0),
(185, 1, '2026-02-02 13:49:22', '2026-02-02 13:49:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:22', '2026-02-02 13:49:22', '', 12, 'https://mrarif.me/oasis/?p=185', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(186, 1, '2026-02-02 13:49:22', '2026-02-02 13:49:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:49:22', '2026-02-02 13:49:22', '', 12, 'https://mrarif.me/oasis/?p=186', 0, 'revision', '', 0),
(187, 1, '2026-02-02 13:55:08', '2026-02-02 13:55:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:08', '2026-02-02 13:55:08', '', 12, 'https://mrarif.me/oasis/?p=187', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(188, 1, '2026-02-02 13:55:08', '2026-02-02 13:55:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:08', '2026-02-02 13:55:08', '', 12, 'https://mrarif.me/oasis/?p=188', 0, 'revision', '', 0),
(189, 1, '2026-02-02 13:55:08', '2026-02-02 13:55:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:08', '2026-02-02 13:55:08', '', 12, 'https://mrarif.me/oasis/?p=189', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(190, 1, '2026-02-02 13:55:52', '2026-02-02 13:55:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:52', '2026-02-02 13:55:52', '', 12, 'https://mrarif.me/oasis/?p=190', 0, 'revision', '', 0),
(191, 1, '2026-02-02 13:55:52', '2026-02-02 13:55:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:52', '2026-02-02 13:55:52', '', 12, 'https://mrarif.me/oasis/?p=191', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(216, 1, '2026-02-02 14:20:22', '2026-02-02 14:20:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:20:22', '2026-02-02 14:20:22', '', 12, 'https://mrarif.me/oasis/?p=216', 0, 'revision', '', 0),
(192, 1, '2026-02-02 13:55:52', '2026-02-02 13:55:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:55:52', '2026-02-02 13:55:52', '', 12, 'https://mrarif.me/oasis/?p=192', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(193, 1, '2026-02-02 13:57:30', '2026-02-02 13:57:30', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:57:30', '2026-02-02 13:57:30', '', 12, 'https://mrarif.me/oasis/?p=193', 0, 'revision', '', 0),
(194, 1, '2026-02-02 13:57:30', '2026-02-02 13:57:30', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:57:30', '2026-02-02 13:57:30', '', 12, 'https://mrarif.me/oasis/?p=194', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(195, 1, '2026-02-02 13:57:30', '2026-02-02 13:57:30', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:57:30', '2026-02-02 13:57:30', '', 12, 'https://mrarif.me/oasis/?p=195', 0, 'revision', '', 0),
(196, 1, '2026-02-02 13:58:18', '2026-02-02 13:58:18', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:58:18', '2026-02-02 13:58:18', '', 12, 'https://mrarif.me/oasis/?p=196', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(197, 1, '2026-02-02 13:58:18', '2026-02-02 13:58:18', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:58:18', '2026-02-02 13:58:18', '', 12, 'https://mrarif.me/oasis/?p=197', 0, 'revision', '', 0),
(198, 1, '2026-02-02 13:58:19', '2026-02-02 13:58:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 13:58:19', '2026-02-02 13:58:19', '', 12, 'https://mrarif.me/oasis/?p=198', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(204, 1, '2026-02-02 14:03:26', '2026-02-02 14:03:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:03:26', '2026-02-02 14:03:26', '', 12, 'https://mrarif.me/oasis/?p=204', 0, 'revision', '', 0),
(201, 1, '2026-02-02 14:03:20', '2026-02-02 14:03:20', '', 'team abc', '', 'inherit', 'open', 'closed', '', 'team-abc', '', '', '2026-02-02 14:03:20', '2026-02-02 14:03:20', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg', 0, 'attachment', 'image/jpeg', 0),
(202, 1, '2026-02-02 14:03:26', '2026-02-02 14:03:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:03:26', '2026-02-02 14:03:26', '', 12, 'https://mrarif.me/oasis/?p=202', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(203, 1, '2026-02-02 14:03:26', '2026-02-02 14:03:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"682\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-300x205.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ahome-768x524.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:03:26', '2026-02-02 14:03:26', '', 12, 'https://mrarif.me/oasis/?p=203', 0, 'revision', '', 0),
(205, 1, '2026-02-02 14:05:14', '2026-02-02 14:05:14', '', 'Care Plans and Treatments aa', '', 'inherit', 'open', 'closed', '', 'care-plans-and-treatments-aa', '', '', '2026-02-02 14:05:14', '2026-02-02 14:05:14', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(206, 1, '2026-02-02 14:05:19', '2026-02-02 14:05:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:05:19', '2026-02-02 14:05:19', '', 12, 'https://mrarif.me/oasis/?p=206', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(207, 1, '2026-02-02 14:05:19', '2026-02-02 14:05:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:05:19', '2026-02-02 14:05:19', '', 12, 'https://mrarif.me/oasis/?p=207', 0, 'revision', '', 0),
(208, 1, '2026-02-02 14:05:19', '2026-02-02 14:05:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:05:19', '2026-02-02 14:05:19', '', 12, 'https://mrarif.me/oasis/?p=208', 0, 'revision', '', 0),
(209, 1, '2026-02-02 14:16:40', '2026-02-02 14:16:40', '', 'Daily Health Care Monitoring aa', '', 'inherit', 'open', 'closed', '', 'daily-health-care-monitoring-aa', '', '', '2026-02-02 14:16:40', '2026-02-02 14:16:40', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(210, 1, '2026-02-02 14:16:43', '2026-02-02 14:16:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:16:43', '2026-02-02 14:16:43', '', 12, 'https://mrarif.me/oasis/?p=210', 0, 'revision', '', 0),
(211, 1, '2026-02-02 14:16:43', '2026-02-02 14:16:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:16:43', '2026-02-02 14:16:43', '', 12, 'https://mrarif.me/oasis/?p=211', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(212, 1, '2026-02-02 14:16:44', '2026-02-02 14:16:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:16:44', '2026-02-02 14:16:44', '', 12, 'https://mrarif.me/oasis/?p=212', 0, 'revision', '', 0),
(213, 1, '2026-02-02 14:19:53', '2026-02-02 14:19:53', '', '69637 (1)', '', 'inherit', 'open', 'closed', '', '69637-1', '', '', '2026-02-02 14:19:53', '2026-02-02 14:19:53', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(214, 1, '2026-02-02 14:20:22', '2026-02-02 14:20:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:20:22', '2026-02-02 14:20:22', '', 12, 'https://mrarif.me/oasis/?p=214', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(215, 1, '2026-02-02 14:20:22', '2026-02-02 14:20:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:20:22', '2026-02-02 14:20:22', '', 12, 'https://mrarif.me/oasis/?p=215', 0, 'revision', '', 0),
(217, 1, '2026-02-02 14:21:50', '2026-02-02 14:21:50', '', 'Medication Reminders aa', '', 'inherit', 'open', 'closed', '', 'medication-reminders-aa', '', '', '2026-02-02 14:21:50', '2026-02-02 14:21:50', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(218, 1, '2026-02-02 14:21:56', '2026-02-02 14:21:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:21:56', '2026-02-02 14:21:56', '', 12, 'https://mrarif.me/oasis/?p=218', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(219, 1, '2026-02-02 14:21:56', '2026-02-02 14:21:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:21:56', '2026-02-02 14:21:56', '', 12, 'https://mrarif.me/oasis/?p=219', 0, 'revision', '', 0),
(220, 1, '2026-02-02 14:21:56', '2026-02-02 14:21:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:21:56', '2026-02-02 14:21:56', '', 12, 'https://mrarif.me/oasis/?p=220', 0, 'revision', '', 0),
(221, 1, '2026-02-02 14:26:06', '2026-02-02 14:26:06', '', 'Nursing, Dietary Counseling aa', '', 'inherit', 'open', 'closed', '', 'nursing-dietary-counseling-aa', '', '', '2026-02-02 14:26:06', '2026-02-02 14:26:06', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(222, 1, '2026-02-02 14:26:10', '2026-02-02 14:26:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:26:10', '2026-02-02 14:26:10', '', 12, 'https://mrarif.me/oasis/?p=222', 0, 'revision', '', 0),
(223, 1, '2026-02-02 14:26:10', '2026-02-02 14:26:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:26:10', '2026-02-02 14:26:10', '', 12, 'https://mrarif.me/oasis/?p=223', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(224, 1, '2026-02-02 14:26:10', '2026-02-02 14:26:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:26:10', '2026-02-02 14:26:10', '', 12, 'https://mrarif.me/oasis/?p=224', 0, 'revision', '', 0),
(225, 1, '2026-02-02 14:26:51', '2026-02-02 14:26:51', '', '2148934332 (1)', '', 'inherit', 'open', 'closed', '', '2148934332-1', '', '', '2026-02-02 14:26:51', '2026-02-02 14:26:51', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(226, 1, '2026-02-02 14:28:46', '2026-02-02 14:28:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:28:46', '2026-02-02 14:28:46', '', 12, 'https://mrarif.me/oasis/?p=226', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(227, 1, '2026-02-02 14:28:46', '2026-02-02 14:28:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:28:46', '2026-02-02 14:28:46', '', 12, 'https://mrarif.me/oasis/?p=227', 0, 'revision', '', 0),
(228, 1, '2026-02-02 14:28:46', '2026-02-02 14:28:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:28:46', '2026-02-02 14:28:46', '', 12, 'https://mrarif.me/oasis/?p=228', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(229, 1, '2026-02-02 14:29:00', '2026-02-02 14:29:00', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:29:00', '2026-02-02 14:29:00', '', 12, 'https://mrarif.me/oasis/?p=229', 0, 'revision', '', 0),
(230, 1, '2026-02-02 14:29:00', '2026-02-02 14:29:00', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:29:00', '2026-02-02 14:29:00', '', 12, 'https://mrarif.me/oasis/?p=230', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(231, 1, '2026-02-02 14:29:00', '2026-02-02 14:29:00', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:29:00', '2026-02-02 14:29:00', '', 12, 'https://mrarif.me/oasis/?p=231', 0, 'revision', '', 0),
(232, 1, '2026-02-02 14:32:21', '2026-02-02 14:32:21', '', 'Yoga For The Brain aa', '', 'inherit', 'open', 'closed', '', 'yoga-for-the-brain-aa', '', '', '2026-02-02 14:32:21', '2026-02-02 14:32:21', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(233, 1, '2026-02-02 14:32:25', '2026-02-02 14:32:25', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:32:25', '2026-02-02 14:32:25', '', 12, 'https://mrarif.me/oasis/?p=233', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(234, 1, '2026-02-02 14:32:26', '2026-02-02 14:32:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:32:26', '2026-02-02 14:32:26', '', 12, 'https://mrarif.me/oasis/?p=234', 0, 'revision', '', 0),
(235, 1, '2026-02-02 14:32:26', '2026-02-02 14:32:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:32:26', '2026-02-02 14:32:26', '', 12, 'https://mrarif.me/oasis/?p=235', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(236, 1, '2026-02-02 14:34:31', '2026-02-02 14:34:31', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:31', '2026-02-02 14:34:31', '', 12, 'https://mrarif.me/oasis/?p=236', 0, 'revision', '', 0),
(237, 1, '2026-02-02 14:34:31', '2026-02-02 14:34:31', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:31', '2026-02-02 14:34:31', '', 12, 'https://mrarif.me/oasis/?p=237', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(238, 1, '2026-02-02 14:34:32', '2026-02-02 14:34:32', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:32', '2026-02-02 14:34:32', '', 12, 'https://mrarif.me/oasis/?p=238', 0, 'revision', '', 0),
(239, 1, '2026-02-02 14:34:44', '2026-02-02 14:34:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:44', '2026-02-02 14:34:44', '', 12, 'https://mrarif.me/oasis/?p=239', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(240, 1, '2026-02-02 14:34:44', '2026-02-02 14:34:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:44', '2026-02-02 14:34:44', '', 12, 'https://mrarif.me/oasis/?p=240', 0, 'revision', '', 0),
(241, 1, '2026-02-02 14:34:44', '2026-02-02 14:34:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:34:44', '2026-02-02 14:34:44', '', 12, 'https://mrarif.me/oasis/?p=241', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(242, 1, '2026-02-02 14:35:21', '2026-02-02 14:35:21', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:35:21', '2026-02-02 14:35:21', '', 12, 'https://mrarif.me/oasis/?p=242', 0, 'revision', '', 0),
(243, 1, '2026-02-02 14:35:21', '2026-02-02 14:35:21', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:35:21', '2026-02-02 14:35:21', '', 12, 'https://mrarif.me/oasis/?p=243', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(244, 1, '2026-02-02 14:35:22', '2026-02-02 14:35:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:35:22', '2026-02-02 14:35:22', '', 12, 'https://mrarif.me/oasis/?p=244', 0, 'revision', '', 0),
(245, 1, '2026-02-02 14:36:35', '2026-02-02 14:36:35', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:35', '2026-02-02 14:36:35', '', 12, 'https://mrarif.me/oasis/?p=245', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(246, 1, '2026-02-02 14:36:35', '2026-02-02 14:36:35', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:35', '2026-02-02 14:36:35', '', 12, 'https://mrarif.me/oasis/?p=246', 0, 'revision', '', 0),
(247, 1, '2026-02-02 14:36:35', '2026-02-02 14:36:35', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:35', '2026-02-02 14:36:35', '', 12, 'https://mrarif.me/oasis/?p=247', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(248, 1, '2026-02-02 14:36:55', '2026-02-02 14:36:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:55', '2026-02-02 14:36:55', '', 12, 'https://mrarif.me/oasis/?p=248', 0, 'revision', '', 0),
(249, 1, '2026-02-02 14:36:55', '2026-02-02 14:36:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:55', '2026-02-02 14:36:55', '', 12, 'https://mrarif.me/oasis/?p=249', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(250, 1, '2026-02-02 14:36:55', '2026-02-02 14:36:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:36:55', '2026-02-02 14:36:55', '', 12, 'https://mrarif.me/oasis/?p=250', 0, 'revision', '', 0),
(251, 1, '2026-02-02 14:37:08', '2026-02-02 14:37:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:37:08', '2026-02-02 14:37:08', '', 12, 'https://mrarif.me/oasis/?p=251', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(252, 1, '2026-02-02 14:37:08', '2026-02-02 14:37:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:37:08', '2026-02-02 14:37:08', '', 12, 'https://mrarif.me/oasis/?p=252', 0, 'revision', '', 0),
(253, 1, '2026-02-02 14:37:08', '2026-02-02 14:37:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-02 14:37:08', '2026-02-02 14:37:08', '', 12, 'https://mrarif.me/oasis/?p=253', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(254, 1, '2026-02-03 05:33:10', '2026-02-03 05:33:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:33:10', '2026-02-03 05:33:10', '', 12, 'https://mrarif.me/oasis/?p=254', 0, 'revision', '', 0),
(255, 1, '2026-02-03 05:33:10', '2026-02-03 05:33:10', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:33:10', '2026-02-03 05:33:10', '', 12, 'https://mrarif.me/oasis/?p=255', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(256, 1, '2026-02-03 05:33:11', '2026-02-03 05:33:11', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:33:11', '2026-02-03 05:33:11', '', 12, 'https://mrarif.me/oasis/?p=256', 0, 'revision', '', 0),
(257, 1, '2026-02-03 05:43:08', '2026-02-03 05:43:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:43:08', '2026-02-03 05:43:08', '', 12, 'https://mrarif.me/oasis/?p=257', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(258, 1, '2026-02-03 05:43:08', '2026-02-03 05:43:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:43:08', '2026-02-03 05:43:08', '', 12, 'https://mrarif.me/oasis/?p=258', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(259, 1, '2026-02-03 05:43:08', '2026-02-03 05:43:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:43:08', '2026-02-03 05:43:08', '', 12, 'https://mrarif.me/oasis/?p=259', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(260, 1, '2026-02-03 05:44:02', '2026-02-03 05:44:02', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:44:02', '2026-02-03 05:44:02', '', 12, 'https://mrarif.me/oasis/?p=260', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(261, 1, '2026-02-03 05:44:03', '2026-02-03 05:44:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:44:03', '2026-02-03 05:44:03', '', 12, 'https://mrarif.me/oasis/?p=261', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(262, 1, '2026-02-03 05:44:03', '2026-02-03 05:44:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:44:03', '2026-02-03 05:44:03', '', 12, 'https://mrarif.me/oasis/?p=262', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(263, 1, '2026-02-03 05:47:17', '2026-02-03 05:47:17', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:17', '2026-02-03 05:47:17', '', 12, 'https://mrarif.me/oasis/?p=263', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(264, 1, '2026-02-03 05:47:18', '2026-02-03 05:47:18', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:18', '2026-02-03 05:47:18', '', 12, 'https://mrarif.me/oasis/?p=264', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(265, 1, '2026-02-03 05:47:18', '2026-02-03 05:47:18', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:18', '2026-02-03 05:47:18', '', 12, 'https://mrarif.me/oasis/?p=265', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(266, 1, '2026-02-03 05:47:29', '2026-02-03 05:47:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:29', '2026-02-03 05:47:29', '', 12, 'https://mrarif.me/oasis/?p=266', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(267, 1, '2026-02-03 05:47:29', '2026-02-03 05:47:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:29', '2026-02-03 05:47:29', '', 12, 'https://mrarif.me/oasis/?p=267', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(268, 1, '2026-02-03 05:47:29', '2026-02-03 05:47:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:47:29', '2026-02-03 05:47:29', '', 12, 'https://mrarif.me/oasis/?p=268', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(269, 1, '2026-02-03 05:51:24', '2026-02-03 05:51:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:24', '2026-02-03 05:51:24', '', 12, 'https://mrarif.me/oasis/?p=269', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(270, 1, '2026-02-03 05:51:24', '2026-02-03 05:51:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:24', '2026-02-03 05:51:24', '', 12, 'https://mrarif.me/oasis/?p=270', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(271, 1, '2026-02-03 05:51:24', '2026-02-03 05:51:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:24', '2026-02-03 05:51:24', '', 12, 'https://mrarif.me/oasis/?p=271', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(272, 1, '2026-02-03 05:51:56', '2026-02-03 05:51:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:56', '2026-02-03 05:51:56', '', 12, 'https://mrarif.me/oasis/?p=272', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(273, 1, '2026-02-03 05:51:56', '2026-02-03 05:51:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:56', '2026-02-03 05:51:56', '', 12, 'https://mrarif.me/oasis/?p=273', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(274, 1, '2026-02-03 05:51:56', '2026-02-03 05:51:56', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:51:56', '2026-02-03 05:51:56', '', 12, 'https://mrarif.me/oasis/?p=274', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(275, 1, '2026-02-03 05:52:26', '2026-02-03 05:52:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:52:26', '2026-02-03 05:52:26', '', 12, 'https://mrarif.me/oasis/?p=275', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(276, 1, '2026-02-03 05:52:26', '2026-02-03 05:52:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:52:26', '2026-02-03 05:52:26', '', 12, 'https://mrarif.me/oasis/?p=276', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(277, 1, '2026-02-03 05:52:26', '2026-02-03 05:52:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:52:26', '2026-02-03 05:52:26', '', 12, 'https://mrarif.me/oasis/?p=277', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(279, 1, '2026-02-03 05:59:45', '2026-02-03 05:59:45', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:59:45', '2026-02-03 05:59:45', '', 12, 'https://mrarif.me/oasis/?p=279', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(280, 1, '2026-02-03 05:59:45', '2026-02-03 05:59:45', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:59:45', '2026-02-03 05:59:45', '', 12, 'https://mrarif.me/oasis/?p=280', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(281, 1, '2026-02-03 05:59:46', '2026-02-03 05:59:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 05:59:46', '2026-02-03 05:59:46', '', 12, 'https://mrarif.me/oasis/?p=281', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(282, 1, '2026-02-03 06:00:43', '2026-02-03 06:00:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:00:43', '2026-02-03 06:00:43', '', 12, 'https://mrarif.me/oasis/?p=282', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(283, 1, '2026-02-03 06:00:43', '2026-02-03 06:00:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:00:43', '2026-02-03 06:00:43', '', 12, 'https://mrarif.me/oasis/?p=283', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(284, 1, '2026-02-03 06:00:43', '2026-02-03 06:00:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:00:43', '2026-02-03 06:00:43', '', 12, 'https://mrarif.me/oasis/?p=284', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(285, 1, '2026-02-03 06:02:58', '2026-02-03 06:02:58', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:02:58', '2026-02-03 06:02:58', '', 12, 'https://mrarif.me/oasis/?p=285', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(286, 1, '2026-02-03 06:02:59', '2026-02-03 06:02:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:02:59', '2026-02-03 06:02:59', '', 12, 'https://mrarif.me/oasis/?p=286', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(287, 1, '2026-02-03 06:02:59', '2026-02-03 06:02:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:02:59', '2026-02-03 06:02:59', '', 12, 'https://mrarif.me/oasis/?p=287', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(288, 1, '2026-02-03 06:05:08', '2026-02-03 06:05:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:05:08', '2026-02-03 06:05:08', '', 12, 'https://mrarif.me/oasis/?p=288', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(289, 1, '2026-02-03 06:05:08', '2026-02-03 06:05:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:05:08', '2026-02-03 06:05:08', '', 12, 'https://mrarif.me/oasis/?p=289', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(290, 1, '2026-02-03 06:05:08', '2026-02-03 06:05:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 06:05:08', '2026-02-03 06:05:08', '', 12, 'https://mrarif.me/oasis/?p=290', 0, 'revision', '', 0),
(291, 1, '2026-02-03 06:09:52', '2026-02-03 06:09:52', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'publish', 'closed', 'closed', '', 'header-2', '', '', '2026-02-19 07:47:03', '2026-02-19 07:47:03', '', 0, 'https://mrarif.me/oasis/?post_type=elementor_library&#038;p=291', 0, 'elementor_library', '', 0),
(524, 1, '2026-02-05 07:55:08', '2026-02-05 07:55:08', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h2>Get In Touch With Us</h2>', 'contact form two', '', 'publish', 'closed', 'closed', '', 'contact-form-two', '', '', '2026-02-05 07:55:08', '2026-02-05 07:55:08', '', 0, 'https://mrarif.me/oasis/?elementor_library=contact-form-two', 0, 'elementor_library', '', 0),
(525, 1, '2026-02-05 07:55:08', '2026-02-05 07:55:08', '<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h2>Get In Touch With Us</h2>', 'contact form two', '', 'inherit', 'closed', 'closed', '', '524-revision-v1', '', '', '2026-02-05 07:55:08', '2026-02-05 07:55:08', '', 524, 'https://mrarif.me/oasis/?p=525', 0, 'revision', '', 0),
(526, 1, '2026-02-05 07:55:47', '2026-02-05 07:55:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:55:47', '2026-02-05 07:55:47', '', 24, 'https://mrarif.me/oasis/?p=526', 0, 'revision', '', 0),
(300, 1, '2026-02-03 06:13:51', '2026-02-03 06:13:51', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"#\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:13:51', '2026-02-03 06:13:51', '', 291, 'https://mrarif.me/oasis/?p=300', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(295, 1, '2026-02-03 06:11:51', '2026-02-03 06:11:51', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:11:51', '2026-02-03 06:11:51', '', 291, 'https://mrarif.me/oasis/?p=295', 0, 'revision', '', 0),
(296, 1, '2026-02-03 06:12:27', '2026-02-03 06:12:27', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:12:27', '2026-02-03 06:12:27', '', 291, 'https://mrarif.me/oasis/?p=296', 0, 'revision', '', 0),
(297, 1, '2026-02-03 06:12:28', '2026-02-03 06:12:28', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:12:28', '2026-02-03 06:12:28', '', 291, 'https://mrarif.me/oasis/?p=297', 0, 'revision', '', 0),
(301, 1, '2026-02-03 06:33:16', '2026-02-03 06:33:16', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/privacy-notes/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'publish', 'closed', 'closed', '', 'footer', '', '', '2026-02-19 07:12:55', '2026-02-19 07:12:55', '', 0, 'https://mrarif.me/oasis/?post_type=elementor_library&#038;p=301', 0, 'elementor_library', '', 0),
(303, 1, '2026-02-03 06:34:32', '2026-02-03 06:34:32', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-03 06:34:32', '2026-02-03 06:34:32', '', 301, 'https://mrarif.me/oasis/?p=303', 0, 'revision', '', 0),
(299, 1, '2026-02-03 06:13:51', '2026-02-03 06:13:51', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting.			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										XX-XXX-XXX-XXX-XX\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:info@catcafe.ocm\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										info@catcafe.ocm\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Opening Hours</h6>							\n					Sunday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Monday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Tuesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Wednesday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Thursday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Friday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Saturday				\n							10:00 AM						\n						-\n							7:00 PM						\n					Copyright 2024 All Rights Reserved', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-03 06:13:51', '2026-02-03 06:13:51', '', 291, 'https://mrarif.me/oasis/?p=299', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(317, 1, '2026-02-03 07:01:37', '2026-02-03 07:01:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:01:37', '2026-02-03 07:01:37', '', 12, 'https://mrarif.me/oasis/?p=317', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(315, 1, '2026-02-03 07:01:37', '2026-02-03 07:01:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:01:37', '2026-02-03 07:01:37', '', 12, 'https://mrarif.me/oasis/?p=315', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(316, 1, '2026-02-03 07:01:37', '2026-02-03 07:01:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:01:37', '2026-02-03 07:01:37', '', 12, 'https://mrarif.me/oasis/?p=316', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(318, 1, '2026-02-03 07:02:40', '2026-02-03 07:02:40', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:02:40', '2026-02-03 07:02:40', '', 12, 'https://mrarif.me/oasis/?p=318', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(319, 1, '2026-02-03 07:02:40', '2026-02-03 07:02:40', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:02:40', '2026-02-03 07:02:40', '', 12, 'https://mrarif.me/oasis/?p=319', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(320, 1, '2026-02-03 07:02:41', '2026-02-03 07:02:41', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:02:41', '2026-02-03 07:02:41', '', 12, 'https://mrarif.me/oasis/?p=320', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(321, 1, '2026-02-03 07:03:03', '2026-02-03 07:03:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:03', '2026-02-03 07:03:03', '', 12, 'https://mrarif.me/oasis/?p=321', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(322, 1, '2026-02-03 07:03:03', '2026-02-03 07:03:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:03', '2026-02-03 07:03:03', '', 12, 'https://mrarif.me/oasis/?p=322', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(323, 1, '2026-02-03 07:03:03', '2026-02-03 07:03:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:03', '2026-02-03 07:03:03', '', 12, 'https://mrarif.me/oasis/?p=323', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(324, 1, '2026-02-03 07:03:39', '2026-02-03 07:03:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:39', '2026-02-03 07:03:39', '', 12, 'https://mrarif.me/oasis/?p=324', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(325, 1, '2026-02-03 07:03:39', '2026-02-03 07:03:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:39', '2026-02-03 07:03:39', '', 12, 'https://mrarif.me/oasis/?p=325', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(326, 1, '2026-02-03 07:03:39', '2026-02-03 07:03:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:03:39', '2026-02-03 07:03:39', '', 12, 'https://mrarif.me/oasis/?p=326', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(327, 1, '2026-02-03 07:04:12', '2026-02-03 07:04:12', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:04:12', '2026-02-03 07:04:12', '', 12, 'https://mrarif.me/oasis/?p=327', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(328, 1, '2026-02-03 07:04:12', '2026-02-03 07:04:12', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:04:12', '2026-02-03 07:04:12', '', 12, 'https://mrarif.me/oasis/?p=328', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(329, 1, '2026-02-03 07:04:12', '2026-02-03 07:04:12', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:04:12', '2026-02-03 07:04:12', '', 12, 'https://mrarif.me/oasis/?p=329', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(330, 1, '2026-02-03 07:05:19', '2026-02-03 07:05:19', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:19', '2026-02-03 07:05:19', '', 12, 'https://mrarif.me/oasis/?p=330', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(331, 1, '2026-02-03 07:05:20', '2026-02-03 07:05:20', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:20', '2026-02-03 07:05:20', '', 12, 'https://mrarif.me/oasis/?p=331', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(332, 1, '2026-02-03 07:05:20', '2026-02-03 07:05:20', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:20', '2026-02-03 07:05:20', '', 12, 'https://mrarif.me/oasis/?p=332', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(333, 1, '2026-02-03 07:05:51', '2026-02-03 07:05:51', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:51', '2026-02-03 07:05:51', '', 12, 'https://mrarif.me/oasis/?p=333', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(334, 1, '2026-02-03 07:05:51', '2026-02-03 07:05:51', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:51', '2026-02-03 07:05:51', '', 12, 'https://mrarif.me/oasis/?p=334', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(335, 1, '2026-02-03 07:05:52', '2026-02-03 07:05:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-03 07:05:52', '2026-02-03 07:05:52', '', 12, 'https://mrarif.me/oasis/?p=335', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(336, 1, '2026-02-05 05:16:28', '2026-02-05 05:16:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:16:28', '2026-02-05 05:16:28', '', 12, 'https://mrarif.me/oasis/?p=336', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(337, 1, '2026-02-05 05:16:28', '2026-02-05 05:16:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:16:28', '2026-02-05 05:16:28', '', 12, 'https://mrarif.me/oasis/?p=337', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(338, 1, '2026-02-05 05:16:28', '2026-02-05 05:16:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:16:28', '2026-02-05 05:16:28', '', 12, 'https://mrarif.me/oasis/?p=338', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(342, 1, '2026-02-05 05:20:03', '2026-02-05 05:20:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:20:03', '2026-02-05 05:20:03', '', 12, 'https://mrarif.me/oasis/?p=342', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(340, 1, '2026-02-05 05:20:03', '2026-02-05 05:20:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:20:03', '2026-02-05 05:20:03', '', 12, 'https://mrarif.me/oasis/?p=340', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(341, 1, '2026-02-05 05:20:03', '2026-02-05 05:20:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:20:03', '2026-02-05 05:20:03', '', 12, 'https://mrarif.me/oasis/?p=341', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(343, 1, '2026-02-05 05:21:33', '2026-02-05 05:21:33', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:21:33', '2026-02-05 05:21:33', '', 12, 'https://mrarif.me/oasis/?p=343', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(344, 1, '2026-02-05 05:21:33', '2026-02-05 05:21:33', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:21:33', '2026-02-05 05:21:33', '', 12, 'https://mrarif.me/oasis/?p=344', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(345, 1, '2026-02-05 05:21:33', '2026-02-05 05:21:33', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:21:33', '2026-02-05 05:21:33', '', 12, 'https://mrarif.me/oasis/?p=345', 0, 'revision', '', 0),
(346, 1, '2026-02-05 05:39:26', '2026-02-05 05:39:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans \n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans', '', 'publish', 'closed', 'closed', '', 'care-plans', '', '', '2026-02-14 06:44:53', '2026-02-14 06:44:53', '', 0, 'https://mrarif.me/oasis/?page_id=346', 0, 'page', '', 0),
(347, 1, '2026-02-05 05:39:26', '2026-02-05 05:39:26', '', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 05:39:26', '2026-02-05 05:39:26', '', 346, 'https://mrarif.me/oasis/?p=347', 0, 'revision', '', 0),
(348, 1, '2026-02-05 05:39:41', '2026-02-05 05:39:41', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Daily Health Care Monitoring</h2>		Our trained staff monitor each client’s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.', 'Daily Health Care Monitoring', '', 'publish', 'closed', 'closed', '', 'daily-health-care-monitoring', '', '', '2026-02-14 09:44:17', '2026-02-14 09:44:17', '', 0, 'https://mrarif.me/oasis/?page_id=348', 0, 'page', '', 0),
(349, 1, '2026-02-05 05:39:41', '2026-02-05 05:39:41', '', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-05 05:39:41', '2026-02-05 05:39:41', '', 348, 'https://mrarif.me/oasis/?p=349', 0, 'revision', '', 0),
(350, 1, '2026-02-05 05:39:55', '2026-02-05 05:39:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meals: Breakfast, Lunch &amp; Snacks</h2>		Nutritious meals and snacks are provided daily to support health and wellness. Menus are designed with consideration for dietary restrictions, special diets, and individual preferences.', 'Meals: Breakfast, Lunch & Snacks', '', 'publish', 'closed', 'closed', '', 'meals-breakfast-lunch-snacks', '', '', '2026-02-05 07:34:21', '2026-02-05 07:34:21', '', 0, 'https://mrarif.me/oasis/?page_id=350', 0, 'page', '', 0),
(351, 1, '2026-02-05 05:39:55', '2026-02-05 05:39:55', '', 'Meals: Breakfast, Lunch & Snacks', '', 'inherit', 'closed', 'closed', '', '350-revision-v1', '', '', '2026-02-05 05:39:55', '2026-02-05 05:39:55', '', 350, 'https://mrarif.me/oasis/?p=351', 0, 'revision', '', 0),
(352, 1, '2026-02-05 05:40:31', '2026-02-05 05:40:31', '<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication Reminders</h2>		We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.', 'Medication Reminders', '', 'publish', 'closed', 'closed', '', 'medication-reminders', '', '', '2026-02-05 07:35:35', '2026-02-05 07:35:35', '', 0, 'https://mrarif.me/oasis/?page_id=352', 0, 'page', '', 0),
(353, 1, '2026-02-05 05:40:31', '2026-02-05 05:40:31', '', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 05:40:31', '2026-02-05 05:40:31', '', 352, 'https://mrarif.me/oasis/?p=353', 0, 'revision', '', 0),
(354, 1, '2026-02-05 05:40:42', '2026-02-05 05:40:42', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Nursing, Dietary Counseling', '', 'publish', 'closed', 'closed', '', 'nursing-dietary-counseling', '', '', '2026-02-09 11:05:17', '2026-02-09 11:05:17', '', 0, 'https://mrarif.me/oasis/?page_id=354', 0, 'page', '', 0),
(355, 1, '2026-02-05 05:40:42', '2026-02-05 05:40:42', '', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-05 05:40:42', '2026-02-05 05:40:42', '', 354, 'https://mrarif.me/oasis/?p=355', 0, 'revision', '', 0),
(356, 1, '2026-02-05 05:40:56', '2026-02-05 05:40:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'publish', 'closed', 'closed', '', 'personal-caregiving', '', '', '2026-02-19 07:19:12', '2026-02-19 07:19:12', '', 0, 'https://mrarif.me/oasis/?page_id=356', 0, 'page', '', 0),
(357, 1, '2026-02-05 05:40:56', '2026-02-05 05:40:56', '', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 05:40:56', '2026-02-05 05:40:56', '', 356, 'https://mrarif.me/oasis/?p=357', 0, 'revision', '', 0),
(358, 1, '2026-02-05 05:41:11', '2026-02-05 05:41:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'publish', 'closed', 'closed', '', 'transportation', '', '', '2026-02-19 07:36:34', '2026-02-19 07:36:34', '', 0, 'https://mrarif.me/oasis/?page_id=358', 0, 'page', '', 0),
(359, 1, '2026-02-05 05:41:11', '2026-02-05 05:41:11', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 05:41:11', '2026-02-05 05:41:11', '', 358, 'https://mrarif.me/oasis/?p=359', 0, 'revision', '', 0),
(360, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '360', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=360', 14, 'nav_menu_item', '', 0),
(361, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '361', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=361', 9, 'nav_menu_item', '', 0),
(362, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '362', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=362', 8, 'nav_menu_item', '', 0),
(363, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '363', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=363', 7, 'nav_menu_item', '', 0),
(364, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '364', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=364', 6, 'nav_menu_item', '', 0),
(365, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '365', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=365', 5, 'nav_menu_item', '', 0),
(366, 1, '2026-02-14 07:54:02', '2026-02-05 05:42:18', ' ', '', '', 'publish', 'closed', 'closed', '', '366', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=366', 4, 'nav_menu_item', '', 0),
(367, 1, '2026-02-05 05:44:23', '2026-02-05 05:44:23', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"#\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 05:44:23', '2026-02-05 05:44:23', '', 291, 'https://mrarif.me/oasis/?p=367', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(368, 1, '2026-02-05 05:49:14', '2026-02-05 05:49:14', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:49:14', '2026-02-05 05:49:14', '', 12, 'https://mrarif.me/oasis/?p=368', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(369, 1, '2026-02-05 05:49:14', '2026-02-05 05:49:14', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:49:14', '2026-02-05 05:49:14', '', 12, 'https://mrarif.me/oasis/?p=369', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(370, 1, '2026-02-05 05:49:14', '2026-02-05 05:49:14', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:49:14', '2026-02-05 05:49:14', '', 12, 'https://mrarif.me/oasis/?p=370', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(371, 1, '2026-02-05 05:51:28', '2026-02-05 05:51:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:51:28', '2026-02-05 05:51:28', '', 12, 'https://mrarif.me/oasis/?p=371', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(372, 1, '2026-02-05 05:51:28', '2026-02-05 05:51:28', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n							<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:51:28', '2026-02-05 05:51:28', '', 12, 'https://mrarif.me/oasis/?p=372', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(373, 1, '2026-02-05 05:51:29', '2026-02-05 05:51:29', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/index.php/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:51:29', '2026-02-05 05:51:29', '', 12, 'https://mrarif.me/oasis/?p=373', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(374, 1, '2026-02-05 05:52:42', '2026-02-05 05:52:42', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/index.php/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:52:42', '2026-02-05 05:52:42', '', 12, 'https://mrarif.me/oasis/?p=374', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(375, 1, '2026-02-05 05:52:42', '2026-02-05 05:52:42', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"#\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/index.php/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:52:42', '2026-02-05 05:52:42', '', 12, 'https://mrarif.me/oasis/?p=375', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(376, 1, '2026-02-05 05:52:43', '2026-02-05 05:52:43', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:52:43', '2026-02-05 05:52:43', '', 12, 'https://mrarif.me/oasis/?p=376', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(377, 1, '2026-02-05 05:55:03', '2026-02-05 05:55:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:55:03', '2026-02-05 05:55:03', '', 12, 'https://mrarif.me/oasis/?p=377', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(378, 1, '2026-02-05 05:55:03', '2026-02-05 05:55:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:55:03', '2026-02-05 05:55:03', '', 12, 'https://mrarif.me/oasis/?p=378', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(379, 1, '2026-02-05 05:55:04', '2026-02-05 05:55:04', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 05:55:04', '2026-02-05 05:55:04', '', 12, 'https://mrarif.me/oasis/?p=379', 0, 'revision', '', 0),
(380, 1, '2026-02-05 06:05:32', '2026-02-05 06:05:32', '<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:05:32', '2026-02-05 06:05:32', '', 301, 'https://mrarif.me/oasis/?p=380', 0, 'revision', '', 0),
(382, 1, '2026-02-05 06:12:29', '2026-02-05 06:12:29', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"#\">\n									Apply Now\n					</a>\n																			<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:12:29', '2026-02-05 06:12:29', '', 301, 'https://mrarif.me/oasis/?p=382', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(388, 1, '2026-02-05 06:29:31', '2026-02-05 06:29:31', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"#\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:29:31', '2026-02-05 06:29:31', '', 301, 'https://mrarif.me/oasis/?p=388', 0, 'revision', '', 0),
(384, 1, '2026-02-05 06:22:43', '2026-02-05 06:22:43', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"#\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:22:43', '2026-02-05 06:22:43', '', 301, 'https://mrarif.me/oasis/?p=384', 0, 'revision', '', 0),
(385, 1, '2026-02-05 06:25:05', '2026-02-05 06:25:05', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"#\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:25:05', '2026-02-05 06:25:05', '', 301, 'https://mrarif.me/oasis/?p=385', 0, 'revision', '', 0),
(386, 1, '2026-02-05 06:25:27', '2026-02-05 06:25:27', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"#\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:25:27', '2026-02-05 06:25:27', '', 301, 'https://mrarif.me/oasis/?p=386', 0, 'revision', '', 0),
(387, 1, '2026-02-05 06:28:35', '2026-02-05 06:28:35', '', 'Careers aav', '', 'inherit', 'open', 'closed', '', 'careers-aav', '', '', '2026-02-05 06:28:35', '2026-02-05 06:28:35', '', 301, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg', 0, 'attachment', 'image/jpeg', 0),
(389, 1, '2026-02-05 06:30:11', '2026-02-05 06:30:11', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:30:11', '2026-02-05 06:30:11', '', 301, 'https://mrarif.me/oasis/?p=389', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(390, 1, '2026-02-05 06:34:45', '2026-02-05 06:34:45', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:34:45', '2026-02-05 06:34:45', '', 301, 'https://mrarif.me/oasis/?p=390', 0, 'revision', '', 0),
(391, 1, '2026-02-05 06:35:11', '2026-02-05 06:35:11', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:35:11', '2026-02-05 06:35:11', '', 301, 'https://mrarif.me/oasis/?p=391', 0, 'revision', '', 0),
(392, 1, '2026-02-05 06:36:01', '2026-02-05 06:36:01', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:36:01', '2026-02-05 06:36:01', '', 301, 'https://mrarif.me/oasis/?p=392', 0, 'revision', '', 0),
(393, 1, '2026-02-05 06:36:19', '2026-02-05 06:36:19', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 06:36:19', '2026-02-05 06:36:19', '', 301, 'https://mrarif.me/oasis/?p=393', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(394, 1, '2026-02-05 06:37:26', '2026-02-05 06:37:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 06:37:26', '2026-02-05 06:37:26', '', 12, 'https://mrarif.me/oasis/?p=394', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(395, 1, '2026-02-05 06:37:27', '2026-02-05 06:37:27', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 06:37:27', '2026-02-05 06:37:27', '', 12, 'https://mrarif.me/oasis/?p=395', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(396, 1, '2026-02-05 06:37:27', '2026-02-05 06:37:27', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 06:37:27', '2026-02-05 06:37:27', '', 12, 'https://mrarif.me/oasis/?p=396', 0, 'revision', '', 0),
(397, 1, '2026-02-05 06:38:53', '2026-02-05 06:38:53', '', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:38:53', '2026-02-05 06:38:53', '', 14, 'https://mrarif.me/oasis/?p=397', 0, 'revision', '', 0),
(398, 1, '2026-02-05 06:38:53', '2026-02-05 06:38:53', '', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:38:53', '2026-02-05 06:38:53', '', 14, 'https://mrarif.me/oasis/?p=398', 0, 'revision', '', 0),
(399, 1, '2026-02-05 06:38:53', '2026-02-05 06:38:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:38:53', '2026-02-05 06:38:53', '', 14, 'https://mrarif.me/oasis/?p=399', 0, 'revision', '', 0),
(1163, 1, '2026-02-19 07:46:51', '2026-02-19 07:46:51', '', 'breadcrumb-abc', '', 'inherit', 'open', 'closed', '', 'breadcrumb-abc', '', '', '2026-02-19 07:46:51', '2026-02-19 07:46:51', '', 291, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/breadcrumb-abc.webp', 0, 'attachment', 'image/webp', 0),
(401, 1, '2026-02-05 06:42:20', '2026-02-05 06:42:20', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"#\">\n									Book Now\n					</a>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 06:42:20', '2026-02-05 06:42:20', '', 291, 'https://mrarif.me/oasis/?p=401', 0, 'revision', '', 0),
(402, 1, '2026-02-05 06:42:55', '2026-02-05 06:42:55', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"#\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 06:42:55', '2026-02-05 06:42:55', '', 291, 'https://mrarif.me/oasis/?p=402', 0, 'revision', '', 0),
(403, 1, '2026-02-05 06:43:28', '2026-02-05 06:43:28', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"#\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 06:43:28', '2026-02-05 06:43:28', '', 291, 'https://mrarif.me/oasis/?p=403', 0, 'revision', '', 0),
(404, 1, '2026-02-05 06:45:21', '2026-02-05 06:45:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:21', '2026-02-05 06:45:21', '', 14, 'https://mrarif.me/oasis/?p=404', 0, 'revision', '', 0),
(405, 1, '2026-02-05 06:45:21', '2026-02-05 06:45:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:21', '2026-02-05 06:45:21', '', 14, 'https://mrarif.me/oasis/?p=405', 0, 'revision', '', 0),
(406, 1, '2026-02-05 06:45:22', '2026-02-05 06:45:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:22', '2026-02-05 06:45:22', '', 14, 'https://mrarif.me/oasis/?p=406', 0, 'revision', '', 0),
(407, 1, '2026-02-05 06:45:28', '2026-02-05 06:45:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:28', '2026-02-05 06:45:28', '', 14, 'https://mrarif.me/oasis/?p=407', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(408, 1, '2026-02-05 06:45:28', '2026-02-05 06:45:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:28', '2026-02-05 06:45:28', '', 14, 'https://mrarif.me/oasis/?p=408', 0, 'revision', '', 0),
(409, 1, '2026-02-05 06:45:28', '2026-02-05 06:45:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:45:28', '2026-02-05 06:45:28', '', 14, 'https://mrarif.me/oasis/?p=409', 0, 'revision', '', 0),
(410, 1, '2026-02-05 06:49:48', '2026-02-05 06:49:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:49:48', '2026-02-05 06:49:48', '', 14, 'https://mrarif.me/oasis/?p=410', 0, 'revision', '', 0),
(411, 1, '2026-02-05 06:49:48', '2026-02-05 06:49:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:49:48', '2026-02-05 06:49:48', '', 14, 'https://mrarif.me/oasis/?p=411', 0, 'revision', '', 0),
(412, 1, '2026-02-05 06:49:48', '2026-02-05 06:49:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:49:48', '2026-02-05 06:49:48', '', 14, 'https://mrarif.me/oasis/?p=412', 0, 'revision', '', 0),
(413, 1, '2026-02-05 06:59:58', '2026-02-05 06:59:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:59:58', '2026-02-05 06:59:58', '', 14, 'https://mrarif.me/oasis/?p=413', 0, 'revision', '', 0),
(414, 1, '2026-02-05 06:59:58', '2026-02-05 06:59:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2> Familiar With Adult Day Care</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:59:58', '2026-02-05 06:59:58', '', 14, 'https://mrarif.me/oasis/?p=414', 0, 'revision', '', 0),
(415, 1, '2026-02-05 06:59:58', '2026-02-05 06:59:58', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 06:59:58', '2026-02-05 06:59:58', '', 14, 'https://mrarif.me/oasis/?p=415', 0, 'revision', '', 0),
(416, 1, '2026-02-05 07:02:30', '2026-02-05 07:02:30', '', 'active a', '', 'inherit', 'open', 'closed', '', 'active-a', '', '', '2026-02-05 07:02:30', '2026-02-05 07:02:30', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg', 0, 'attachment', 'image/jpeg', 0),
(417, 1, '2026-02-05 07:02:40', '2026-02-05 07:02:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:40', '2026-02-05 07:02:40', '', 14, 'https://mrarif.me/oasis/?p=417', 0, 'revision', '', 0),
(418, 1, '2026-02-05 07:02:40', '2026-02-05 07:02:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:40', '2026-02-05 07:02:40', '', 14, 'https://mrarif.me/oasis/?p=418', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(419, 1, '2026-02-05 07:02:40', '2026-02-05 07:02:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:40', '2026-02-05 07:02:40', '', 14, 'https://mrarif.me/oasis/?p=419', 0, 'revision', '', 0),
(420, 1, '2026-02-05 07:02:57', '2026-02-05 07:02:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:57', '2026-02-05 07:02:57', '', 14, 'https://mrarif.me/oasis/?p=420', 0, 'revision', '', 0),
(421, 1, '2026-02-05 07:02:57', '2026-02-05 07:02:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:57', '2026-02-05 07:02:57', '', 14, 'https://mrarif.me/oasis/?p=421', 0, 'revision', '', 0),
(422, 1, '2026-02-05 07:02:57', '2026-02-05 07:02:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:02:57', '2026-02-05 07:02:57', '', 14, 'https://mrarif.me/oasis/?p=422', 0, 'revision', '', 0),
(423, 1, '2026-02-05 07:07:02', '2026-02-05 07:07:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:07:02', '2026-02-05 07:07:02', '', 14, 'https://mrarif.me/oasis/?p=423', 0, 'revision', '', 0),
(424, 1, '2026-02-05 07:07:02', '2026-02-05 07:07:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:07:02', '2026-02-05 07:07:02', '', 14, 'https://mrarif.me/oasis/?p=424', 0, 'revision', '', 0),
(425, 1, '2026-02-05 07:07:02', '2026-02-05 07:07:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:07:02', '2026-02-05 07:07:02', '', 14, 'https://mrarif.me/oasis/?p=425', 0, 'revision', '', 0),
(426, 1, '2026-02-05 07:08:35', '2026-02-05 07:08:35', '', 'social-life_18367807', '', 'inherit', 'open', 'closed', '', 'social-life_18367807', '', '', '2026-02-05 07:10:06', '2026-02-05 07:10:06', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/social-life_18367807.svg', 0, 'attachment', 'image/svg+xml', 0),
(427, 1, '2026-02-05 07:08:38', '2026-02-05 07:08:38', '', 'social-life_18367807', '', 'inherit', 'open', 'closed', '', 'social-life_18367807-2', '', '', '2026-02-05 07:08:38', '2026-02-05 07:08:38', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/social-life_18367807-1.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(428, 1, '2026-02-05 07:09:22', '2026-02-05 07:09:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:09:22', '2026-02-05 07:09:22', '', 14, 'https://mrarif.me/oasis/?p=428', 0, 'revision', '', 0),
(429, 1, '2026-02-05 07:09:22', '2026-02-05 07:09:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:09:22', '2026-02-05 07:09:22', '', 14, 'https://mrarif.me/oasis/?p=429', 0, 'revision', '', 0),
(430, 1, '2026-02-05 07:09:23', '2026-02-05 07:09:23', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:09:23', '2026-02-05 07:09:23', '', 14, 'https://mrarif.me/oasis/?p=430', 0, 'revision', '', 0),
(431, 1, '2026-02-05 07:10:11', '2026-02-05 07:10:11', '', 'empathy_10966139', '', 'inherit', 'open', 'closed', '', 'empathy_10966139', '', '', '2026-02-05 07:10:11', '2026-02-05 07:10:11', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/empathy_10966139.svg', 0, 'attachment', 'image/svg+xml', 0),
(432, 1, '2026-02-05 07:10:41', '2026-02-05 07:10:41', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:10:41', '2026-02-05 07:10:41', '', 14, 'https://mrarif.me/oasis/?p=432', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(433, 1, '2026-02-05 07:10:41', '2026-02-05 07:10:41', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:10:41', '2026-02-05 07:10:41', '', 14, 'https://mrarif.me/oasis/?p=433', 0, 'revision', '', 0),
(434, 1, '2026-02-05 07:10:42', '2026-02-05 07:10:42', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:10:42', '2026-02-05 07:10:42', '', 14, 'https://mrarif.me/oasis/?p=434', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(435, 1, '2026-02-05 07:11:25', '2026-02-05 07:11:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:25', '2026-02-05 07:11:25', '', 14, 'https://mrarif.me/oasis/?p=435', 0, 'revision', '', 0),
(436, 1, '2026-02-05 07:11:25', '2026-02-05 07:11:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:25', '2026-02-05 07:11:25', '', 14, 'https://mrarif.me/oasis/?p=436', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(437, 1, '2026-02-05 07:11:25', '2026-02-05 07:11:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:25', '2026-02-05 07:11:25', '', 14, 'https://mrarif.me/oasis/?p=437', 0, 'revision', '', 0),
(438, 1, '2026-02-05 07:11:35', '2026-02-05 07:11:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:35', '2026-02-05 07:11:35', '', 14, 'https://mrarif.me/oasis/?p=438', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(439, 1, '2026-02-05 07:11:35', '2026-02-05 07:11:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:35', '2026-02-05 07:11:35', '', 14, 'https://mrarif.me/oasis/?p=439', 0, 'revision', '', 0),
(440, 1, '2026-02-05 07:11:35', '2026-02-05 07:11:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:11:35', '2026-02-05 07:11:35', '', 14, 'https://mrarif.me/oasis/?p=440', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(441, 1, '2026-02-05 07:13:12', '2026-02-05 07:13:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:12', '2026-02-05 07:13:12', '', 14, 'https://mrarif.me/oasis/?p=441', 0, 'revision', '', 0),
(442, 1, '2026-02-05 07:13:12', '2026-02-05 07:13:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:12', '2026-02-05 07:13:12', '', 14, 'https://mrarif.me/oasis/?p=442', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(443, 1, '2026-02-05 07:13:12', '2026-02-05 07:13:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:12', '2026-02-05 07:13:12', '', 14, 'https://mrarif.me/oasis/?p=443', 0, 'revision', '', 0),
(444, 1, '2026-02-05 07:13:29', '2026-02-05 07:13:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:29', '2026-02-05 07:13:29', '', 14, 'https://mrarif.me/oasis/?p=444', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(445, 1, '2026-02-05 07:13:29', '2026-02-05 07:13:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:29', '2026-02-05 07:13:29', '', 14, 'https://mrarif.me/oasis/?p=445', 0, 'revision', '', 0),
(446, 1, '2026-02-05 07:13:29', '2026-02-05 07:13:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-05 07:13:29', '2026-02-05 07:13:29', '', 14, 'https://mrarif.me/oasis/?p=446', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(447, 1, '2026-02-05 07:14:16', '2026-02-05 07:14:16', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:14:16', '2026-02-05 07:14:16', '', 12, 'https://mrarif.me/oasis/?p=447', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(448, 1, '2026-02-05 07:14:17', '2026-02-05 07:14:17', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:14:17', '2026-02-05 07:14:17', '', 12, 'https://mrarif.me/oasis/?p=448', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(449, 1, '2026-02-05 07:14:17', '2026-02-05 07:14:17', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:14:17', '2026-02-05 07:14:17', '', 12, 'https://mrarif.me/oasis/?p=449', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(450, 1, '2026-02-05 07:15:22', '2026-02-05 07:15:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:15:22', '2026-02-05 07:15:22', '', 12, 'https://mrarif.me/oasis/?p=450', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(451, 1, '2026-02-05 07:15:22', '2026-02-05 07:15:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"#\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:15:22', '2026-02-05 07:15:22', '', 12, 'https://mrarif.me/oasis/?p=451', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(452, 1, '2026-02-05 07:15:22', '2026-02-05 07:15:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 07:15:22', '2026-02-05 07:15:22', '', 12, 'https://mrarif.me/oasis/?p=452', 0, 'revision', '', 0),
(456, 1, '2026-02-05 07:20:16', '2026-02-05 07:20:16', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:20:16', '2026-02-05 07:20:16', '', 16, 'https://mrarif.me/oasis/?p=456', 0, 'revision', '', 0),
(454, 1, '2026-02-05 07:20:16', '2026-02-05 07:20:16', '', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:20:16', '2026-02-05 07:20:16', '', 16, 'https://mrarif.me/oasis/?p=454', 0, 'revision', '', 0),
(455, 1, '2026-02-05 07:20:16', '2026-02-05 07:20:16', '', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:20:16', '2026-02-05 07:20:16', '', 16, 'https://mrarif.me/oasis/?p=455', 0, 'revision', '', 0),
(1149, 1, '2026-02-19 07:36:29', '2026-02-19 07:36:29', '', 'Transportation-aa', '', 'inherit', 'open', 'closed', '', 'transportation-aa', '', '', '2026-02-19 07:36:29', '2026-02-19 07:36:29', '', 358, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(458, 1, '2026-02-05 07:22:20', '2026-02-05 07:22:20', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:20', '2026-02-05 07:22:20', '', 16, 'https://mrarif.me/oasis/?p=458', 0, 'revision', '', 0),
(459, 1, '2026-02-05 07:22:20', '2026-02-05 07:22:20', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:20', '2026-02-05 07:22:20', '', 16, 'https://mrarif.me/oasis/?p=459', 0, 'revision', '', 0),
(935, 1, '2026-02-09 09:42:04', '2026-02-09 09:42:04', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:04', '2026-02-09 09:42:04', '', 16, 'https://mrarif.me/oasis/?p=935', 0, 'revision', '', 0),
(460, 1, '2026-02-05 07:22:20', '2026-02-05 07:22:20', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:20', '2026-02-05 07:22:20', '', 16, 'https://mrarif.me/oasis/?p=460', 0, 'revision', '', 0),
(461, 1, '2026-02-05 07:22:40', '2026-02-05 07:22:40', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:40', '2026-02-05 07:22:40', '', 16, 'https://mrarif.me/oasis/?p=461', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(462, 1, '2026-02-05 07:22:40', '2026-02-05 07:22:40', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:40', '2026-02-05 07:22:40', '', 16, 'https://mrarif.me/oasis/?p=462', 0, 'revision', '', 0),
(463, 1, '2026-02-05 07:22:40', '2026-02-05 07:22:40', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-05 07:22:40', '2026-02-05 07:22:40', '', 16, 'https://mrarif.me/oasis/?p=463', 0, 'revision', '', 0),
(464, 1, '2026-02-05 07:24:19', '2026-02-05 07:24:19', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:19', '2026-02-05 07:24:19', '', 358, 'https://mrarif.me/oasis/?p=464', 0, 'revision', '', 0),
(465, 1, '2026-02-05 07:24:19', '2026-02-05 07:24:19', '', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:19', '2026-02-05 07:24:19', '', 358, 'https://mrarif.me/oasis/?p=465', 0, 'revision', '', 0),
(924, 1, '2026-02-09 08:50:10', '2026-02-09 08:50:10', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 08:50:10', '2026-02-09 08:50:10', '', 358, 'https://mrarif.me/oasis/?p=924', 0, 'revision', '', 0),
(466, 1, '2026-02-05 07:24:19', '2026-02-05 07:24:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:19', '2026-02-05 07:24:19', '', 358, 'https://mrarif.me/oasis/?p=466', 0, 'revision', '', 0),
(467, 1, '2026-02-05 07:24:39', '2026-02-05 07:24:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:39', '2026-02-05 07:24:39', '', 358, 'https://mrarif.me/oasis/?p=467', 0, 'revision', '', 0),
(468, 1, '2026-02-05 07:24:39', '2026-02-05 07:24:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:39', '2026-02-05 07:24:39', '', 358, 'https://mrarif.me/oasis/?p=468', 0, 'revision', '', 0),
(469, 1, '2026-02-05 07:24:39', '2026-02-05 07:24:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:24:39', '2026-02-05 07:24:39', '', 358, 'https://mrarif.me/oasis/?p=469', 0, 'revision', '', 0),
(470, 1, '2026-02-05 07:25:04', '2026-02-05 07:25:04', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:25:04', '2026-02-05 07:25:04', '', 358, 'https://mrarif.me/oasis/?p=470', 0, 'revision', '', 0),
(471, 1, '2026-02-05 07:25:04', '2026-02-05 07:25:04', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:25:04', '2026-02-05 07:25:04', '', 358, 'https://mrarif.me/oasis/?p=471', 0, 'revision', '', 0),
(472, 1, '2026-02-05 07:25:04', '2026-02-05 07:25:04', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-05 07:25:04', '2026-02-05 07:25:04', '', 358, 'https://mrarif.me/oasis/?p=472', 0, 'revision', '', 0),
(473, 1, '2026-02-05 07:27:25', '2026-02-05 07:27:25', '', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:27:25', '2026-02-05 07:27:25', '', 356, 'https://mrarif.me/oasis/?p=473', 0, 'revision', '', 0),
(474, 1, '2026-02-05 07:27:25', '2026-02-05 07:27:25', '', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:27:25', '2026-02-05 07:27:25', '', 356, 'https://mrarif.me/oasis/?p=474', 0, 'revision', '', 0),
(481, 1, '2026-02-05 07:29:17', '2026-02-05 07:29:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:29:17', '2026-02-05 07:29:17', '', 356, 'https://mrarif.me/oasis/?p=481', 0, 'revision', '', 0),
(475, 1, '2026-02-05 07:27:25', '2026-02-05 07:27:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:27:25', '2026-02-05 07:27:25', '', 356, 'https://mrarif.me/oasis/?p=475', 0, 'revision', '', 0),
(476, 1, '2026-02-05 07:28:20', '2026-02-05 07:28:20', '', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-05 07:28:20', '2026-02-05 07:28:20', '', 354, 'https://mrarif.me/oasis/?p=476', 0, 'revision', '', 0),
(477, 1, '2026-02-05 07:28:20', '2026-02-05 07:28:20', '', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-05 07:28:20', '2026-02-05 07:28:20', '', 354, 'https://mrarif.me/oasis/?p=477', 0, 'revision', '', 0),
(478, 1, '2026-02-05 07:28:21', '2026-02-05 07:28:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-05 07:28:21', '2026-02-05 07:28:21', '', 354, 'https://mrarif.me/oasis/?p=478', 0, 'revision', '', 0),
(479, 1, '2026-02-05 07:29:17', '2026-02-05 07:29:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:29:17', '2026-02-05 07:29:17', '', 356, 'https://mrarif.me/oasis/?p=479', 0, 'revision', '', 0),
(480, 1, '2026-02-05 07:29:17', '2026-02-05 07:29:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-05 07:29:17', '2026-02-05 07:29:17', '', 356, 'https://mrarif.me/oasis/?p=480', 0, 'revision', '', 0),
(482, 1, '2026-02-05 07:30:56', '2026-02-05 07:30:56', '', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:30:56', '2026-02-05 07:30:56', '', 346, 'https://mrarif.me/oasis/?p=482', 0, 'revision', '', 0),
(483, 1, '2026-02-05 07:30:56', '2026-02-05 07:30:56', '', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:30:56', '2026-02-05 07:30:56', '', 346, 'https://mrarif.me/oasis/?p=483', 0, 'revision', '', 0),
(484, 1, '2026-02-05 07:30:56', '2026-02-05 07:30:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:30:56', '2026-02-05 07:30:56', '', 346, 'https://mrarif.me/oasis/?p=484', 0, 'revision', '', 0),
(485, 1, '2026-02-05 07:31:12', '2026-02-05 07:31:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:31:12', '2026-02-05 07:31:12', '', 346, 'https://mrarif.me/oasis/?p=485', 0, 'revision', '', 0),
(486, 1, '2026-02-05 07:31:12', '2026-02-05 07:31:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:31:12', '2026-02-05 07:31:12', '', 346, 'https://mrarif.me/oasis/?p=486', 0, 'revision', '', 0),
(487, 1, '2026-02-05 07:31:12', '2026-02-05 07:31:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-05 07:31:12', '2026-02-05 07:31:12', '', 346, 'https://mrarif.me/oasis/?p=487', 0, 'revision', '', 0),
(488, 1, '2026-02-05 07:33:02', '2026-02-05 07:33:02', '', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-05 07:33:02', '2026-02-05 07:33:02', '', 348, 'https://mrarif.me/oasis/?p=488', 0, 'revision', '', 0),
(489, 1, '2026-02-05 07:33:02', '2026-02-05 07:33:02', '', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-05 07:33:02', '2026-02-05 07:33:02', '', 348, 'https://mrarif.me/oasis/?p=489', 0, 'revision', '', 0),
(490, 1, '2026-02-05 07:33:02', '2026-02-05 07:33:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Daily Health Care Monitoring</h2>		Our trained staff monitor each client’s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-05 07:33:02', '2026-02-05 07:33:02', '', 348, 'https://mrarif.me/oasis/?p=490', 0, 'revision', '', 0),
(491, 1, '2026-02-05 07:34:20', '2026-02-05 07:34:20', '', 'Meals: Breakfast, Lunch & Snacks', '', 'inherit', 'closed', 'closed', '', '350-revision-v1', '', '', '2026-02-05 07:34:20', '2026-02-05 07:34:20', '', 350, 'https://mrarif.me/oasis/?p=491', 0, 'revision', '', 0),
(492, 1, '2026-02-05 07:34:20', '2026-02-05 07:34:20', '', 'Meals: Breakfast, Lunch & Snacks', '', 'inherit', 'closed', 'closed', '', '350-revision-v1', '', '', '2026-02-05 07:34:20', '2026-02-05 07:34:20', '', 350, 'https://mrarif.me/oasis/?p=492', 0, 'revision', '', 0),
(493, 1, '2026-02-05 07:34:21', '2026-02-05 07:34:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Meals: Breakfast, Lunch &amp; Snacks</h2>		Nutritious meals and snacks are provided daily to support health and wellness. Menus are designed with consideration for dietary restrictions, special diets, and individual preferences.', 'Meals: Breakfast, Lunch & Snacks', '', 'inherit', 'closed', 'closed', '', '350-revision-v1', '', '', '2026-02-05 07:34:21', '2026-02-05 07:34:21', '', 350, 'https://mrarif.me/oasis/?p=493', 0, 'revision', '', 0),
(494, 1, '2026-02-05 07:35:27', '2026-02-05 07:35:27', '', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:27', '2026-02-05 07:35:27', '', 352, 'https://mrarif.me/oasis/?p=494', 0, 'revision', '', 0),
(495, 1, '2026-02-05 07:35:27', '2026-02-05 07:35:27', '', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:27', '2026-02-05 07:35:27', '', 352, 'https://mrarif.me/oasis/?p=495', 0, 'revision', '', 0),
(496, 1, '2026-02-05 07:35:27', '2026-02-05 07:35:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication Reminders</h2>		We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:27', '2026-02-05 07:35:27', '', 352, 'https://mrarif.me/oasis/?p=496', 0, 'revision', '', 0),
(497, 1, '2026-02-05 07:35:35', '2026-02-05 07:35:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication Reminders</h2>		We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:35', '2026-02-05 07:35:35', '', 352, 'https://mrarif.me/oasis/?p=497', 0, 'revision', '', 0),
(498, 1, '2026-02-05 07:35:35', '2026-02-05 07:35:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication Reminders</h2>		We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:35', '2026-02-05 07:35:35', '', 352, 'https://mrarif.me/oasis/?p=498', 0, 'revision', '', 0),
(499, 1, '2026-02-05 07:35:35', '2026-02-05 07:35:35', '<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Medication Reminders</h2>		We provide medication reminders to help clients take their medications as prescribed, supporting consistency and safety as part of their daily routine.', 'Medication Reminders', '', 'inherit', 'closed', 'closed', '', '352-revision-v1', '', '', '2026-02-05 07:35:35', '2026-02-05 07:35:35', '', 352, 'https://mrarif.me/oasis/?p=499', 0, 'revision', '', 0),
(500, 1, '2026-02-05 07:39:00', '2026-02-05 07:39:00', '', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-05 07:39:00', '2026-02-05 07:39:00', '', 18, 'https://mrarif.me/oasis/?p=500', 0, 'revision', '', 0),
(501, 1, '2026-02-05 07:39:01', '2026-02-05 07:39:01', '', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-05 07:39:01', '2026-02-05 07:39:01', '', 18, 'https://mrarif.me/oasis/?p=501', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(502, 1, '2026-02-05 07:39:01', '2026-02-05 07:39:01', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-05 07:39:01', '2026-02-05 07:39:01', '', 18, 'https://mrarif.me/oasis/?p=502', 0, 'revision', '', 0),
(503, 1, '2026-02-05 07:41:38', '2026-02-05 07:41:38', '', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:38', '2026-02-05 07:41:38', '', 20, 'https://mrarif.me/oasis/?p=503', 0, 'revision', '', 0),
(504, 1, '2026-02-05 07:41:38', '2026-02-05 07:41:38', '', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:38', '2026-02-05 07:41:38', '', 20, 'https://mrarif.me/oasis/?p=504', 0, 'revision', '', 0),
(505, 1, '2026-02-05 07:41:38', '2026-02-05 07:41:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:38', '2026-02-05 07:41:38', '', 20, 'https://mrarif.me/oasis/?p=505', 0, 'revision', '', 0),
(506, 1, '2026-02-05 07:41:55', '2026-02-05 07:41:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:55', '2026-02-05 07:41:55', '', 20, 'https://mrarif.me/oasis/?p=506', 0, 'revision', '', 0),
(507, 1, '2026-02-05 07:41:55', '2026-02-05 07:41:55', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:55', '2026-02-05 07:41:55', '', 20, 'https://mrarif.me/oasis/?p=507', 0, 'revision', '', 0),
(508, 1, '2026-02-05 07:41:56', '2026-02-05 07:41:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:41:56', '2026-02-05 07:41:56', '', 20, 'https://mrarif.me/oasis/?p=508', 0, 'revision', '', 0),
(509, 1, '2026-02-05 07:42:17', '2026-02-05 07:42:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:42:17', '2026-02-05 07:42:17', '', 20, 'https://mrarif.me/oasis/?p=509', 0, 'revision', '', 0),
(510, 1, '2026-02-05 07:42:18', '2026-02-05 07:42:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:42:18', '2026-02-05 07:42:18', '', 20, 'https://mrarif.me/oasis/?p=510', 0, 'revision', '', 0),
(511, 1, '2026-02-05 07:42:18', '2026-02-05 07:42:18', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-05 07:42:18', '2026-02-05 07:42:18', '', 20, 'https://mrarif.me/oasis/?p=511', 0, 'revision', '', 0),
(512, 1, '2026-02-05 07:45:47', '2026-02-05 07:45:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 07:45:47', '2026-02-05 07:45:47', '', 301, 'https://mrarif.me/oasis/?p=512', 0, 'revision', '', 0),
(513, 1, '2026-02-05 07:46:28', '2026-02-05 07:46:28', '', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:46:28', '2026-02-05 07:46:28', '', 24, 'https://mrarif.me/oasis/?p=513', 0, 'revision', '', 0),
(514, 1, '2026-02-05 07:46:28', '2026-02-05 07:46:28', '', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:46:28', '2026-02-05 07:46:28', '', 24, 'https://mrarif.me/oasis/?p=514', 0, 'revision', '', 0),
(515, 1, '2026-02-05 07:46:28', '2026-02-05 07:46:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:46:28', '2026-02-05 07:46:28', '', 24, 'https://mrarif.me/oasis/?p=515', 0, 'revision', '', 0),
(516, 1, '2026-02-05 07:47:54', '2026-02-05 07:47:54', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:47:54', '2026-02-05 07:47:54', '', 24, 'https://mrarif.me/oasis/?p=516', 0, 'revision', '', 0),
(517, 1, '2026-02-05 07:47:54', '2026-02-05 07:47:54', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:47:54', '2026-02-05 07:47:54', '', 24, 'https://mrarif.me/oasis/?p=517', 0, 'revision', '', 0),
(523, 1, '2026-02-05 07:53:28', '2026-02-05 07:53:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:53:28', '2026-02-05 07:53:28', '', 24, 'https://mrarif.me/oasis/?p=523', 0, 'revision', '', 0),
(518, 1, '2026-02-05 07:47:54', '2026-02-05 07:47:54', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				<p><em>Apply by submitting your resume through our website or contacting our office.</em></p>													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:47:54', '2026-02-05 07:47:54', '', 24, 'https://mrarif.me/oasis/?p=518', 0, 'revision', '', 0),
(632, 1, '2026-02-05 10:44:01', '2026-02-05 10:44:01', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 10:44:01', '2026-02-05 10:44:01', '', 301, 'https://mrarif.me/oasis/?p=632', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(519, 1, '2026-02-05 07:49:37', '2026-02-05 07:49:37', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 07:49:37', '2026-02-05 07:49:37', '', 301, 'https://mrarif.me/oasis/?p=519', 0, 'revision', '', 0),
(521, 1, '2026-02-05 07:53:28', '2026-02-05 07:53:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				<p><em>Apply by submitting your resume through our website or contacting our office.</em></p>													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:53:28', '2026-02-05 07:53:28', '', 24, 'https://mrarif.me/oasis/?p=521', 0, 'revision', '', 0),
(522, 1, '2026-02-05 07:53:28', '2026-02-05 07:53:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				<p><em>Apply by submitting your resume through our website or contacting our office.</em></p>													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:53:28', '2026-02-05 07:53:28', '', 24, 'https://mrarif.me/oasis/?p=522', 0, 'revision', '', 0),
(527, 1, '2026-02-05 07:55:47', '2026-02-05 07:55:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:55:47', '2026-02-05 07:55:47', '', 24, 'https://mrarif.me/oasis/?p=527', 0, 'revision', '', 0),
(528, 1, '2026-02-05 07:55:47', '2026-02-05 07:55:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Get In Touch With Us</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:55:47', '2026-02-05 07:55:47', '', 24, 'https://mrarif.me/oasis/?p=528', 0, 'revision', '', 0),
(529, 1, '2026-02-05 07:57:33', '2026-02-05 07:57:33', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Get In Touch With Us</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:57:33', '2026-02-05 07:57:33', '', 24, 'https://mrarif.me/oasis/?p=529', 0, 'revision', '', 0),
(530, 1, '2026-02-05 07:57:33', '2026-02-05 07:57:33', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Get In Touch With Us</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:57:33', '2026-02-05 07:57:33', '', 24, 'https://mrarif.me/oasis/?p=530', 0, 'revision', '', 0),
(531, 1, '2026-02-05 07:57:33', '2026-02-05 07:57:33', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 07:57:33', '2026-02-05 07:57:33', '', 24, 'https://mrarif.me/oasis/?p=531', 0, 'revision', '', 0),
(532, 1, '2026-02-05 08:08:57', '2026-02-05 08:08:57', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Instagram\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-05 08:08:57', '2026-02-05 08:08:57', '', 301, 'https://mrarif.me/oasis/?p=532', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(533, 1, '2026-02-05 08:09:18', '2026-02-05 08:09:18', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:09:18', '2026-02-05 08:09:18', '', 24, 'https://mrarif.me/oasis/?p=533', 0, 'revision', '', 0),
(534, 1, '2026-02-05 08:09:18', '2026-02-05 08:09:18', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:09:18', '2026-02-05 08:09:18', '', 24, 'https://mrarif.me/oasis/?p=534', 0, 'revision', '', 0),
(535, 1, '2026-02-05 08:09:18', '2026-02-05 08:09:18', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:09:18', '2026-02-05 08:09:18', '', 24, 'https://mrarif.me/oasis/?p=535', 0, 'revision', '', 0),
(536, 1, '2026-02-05 08:10:22', '2026-02-05 08:10:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:22', '2026-02-05 08:10:22', '', 24, 'https://mrarif.me/oasis/?p=536', 0, 'revision', '', 0),
(537, 1, '2026-02-05 08:10:22', '2026-02-05 08:10:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:22', '2026-02-05 08:10:22', '', 24, 'https://mrarif.me/oasis/?p=537', 0, 'revision', '', 0),
(538, 1, '2026-02-05 08:10:23', '2026-02-05 08:10:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:23', '2026-02-05 08:10:23', '', 24, 'https://mrarif.me/oasis/?p=538', 0, 'revision', '', 0),
(539, 1, '2026-02-05 08:10:58', '2026-02-05 08:10:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:58', '2026-02-05 08:10:58', '', 24, 'https://mrarif.me/oasis/?p=539', 0, 'revision', '', 0),
(540, 1, '2026-02-05 08:10:58', '2026-02-05 08:10:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:58', '2026-02-05 08:10:58', '', 24, 'https://mrarif.me/oasis/?p=540', 0, 'revision', '', 0),
(541, 1, '2026-02-05 08:10:58', '2026-02-05 08:10:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:10:58', '2026-02-05 08:10:58', '', 24, 'https://mrarif.me/oasis/?p=541', 0, 'revision', '', 0),
(542, 1, '2026-02-05 08:11:19', '2026-02-05 08:11:19', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:11:19', '2026-02-05 08:11:19', '', 24, 'https://mrarif.me/oasis/?p=542', 0, 'revision', '', 0),
(543, 1, '2026-02-05 08:11:19', '2026-02-05 08:11:19', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:11:19', '2026-02-05 08:11:19', '', 24, 'https://mrarif.me/oasis/?p=543', 0, 'revision', '', 0),
(544, 1, '2026-02-05 08:11:20', '2026-02-05 08:11:20', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:11:20', '2026-02-05 08:11:20', '', 24, 'https://mrarif.me/oasis/?p=544', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(545, 1, '2026-02-05 08:12:32', '2026-02-05 08:12:32', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:12:32', '2026-02-05 08:12:32', '', 24, 'https://mrarif.me/oasis/?p=545', 0, 'revision', '', 0),
(546, 1, '2026-02-05 08:12:32', '2026-02-05 08:12:32', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:12:32', '2026-02-05 08:12:32', '', 24, 'https://mrarif.me/oasis/?p=546', 0, 'revision', '', 0),
(547, 1, '2026-02-05 08:12:32', '2026-02-05 08:12:32', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:12:32', '2026-02-05 08:12:32', '', 24, 'https://mrarif.me/oasis/?p=547', 0, 'revision', '', 0),
(548, 1, '2026-02-05 08:15:02', '2026-02-05 08:15:02', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:02', '2026-02-05 08:15:02', '', 24, 'https://mrarif.me/oasis/?p=548', 0, 'revision', '', 0),
(549, 1, '2026-02-05 08:15:02', '2026-02-05 08:15:02', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:02', '2026-02-05 08:15:02', '', 24, 'https://mrarif.me/oasis/?p=549', 0, 'revision', '', 0),
(550, 1, '2026-02-05 08:15:03', '2026-02-05 08:15:03', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:03', '2026-02-05 08:15:03', '', 24, 'https://mrarif.me/oasis/?p=550', 0, 'revision', '', 0),
(551, 1, '2026-02-05 08:15:39', '2026-02-05 08:15:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:39', '2026-02-05 08:15:39', '', 24, 'https://mrarif.me/oasis/?p=551', 0, 'revision', '', 0),
(552, 1, '2026-02-05 08:15:39', '2026-02-05 08:15:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:39', '2026-02-05 08:15:39', '', 24, 'https://mrarif.me/oasis/?p=552', 0, 'revision', '', 0),
(553, 1, '2026-02-05 08:15:39', '2026-02-05 08:15:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:39', '2026-02-05 08:15:39', '', 24, 'https://mrarif.me/oasis/?p=553', 0, 'revision', '', 0),
(554, 1, '2026-02-05 08:15:50', '2026-02-05 08:15:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:50', '2026-02-05 08:15:50', '', 24, 'https://mrarif.me/oasis/?p=554', 0, 'revision', '', 0),
(555, 1, '2026-02-05 08:15:50', '2026-02-05 08:15:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:50', '2026-02-05 08:15:50', '', 24, 'https://mrarif.me/oasis/?p=555', 0, 'revision', '', 0),
(556, 1, '2026-02-05 08:15:50', '2026-02-05 08:15:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-05 08:15:50', '2026-02-05 08:15:50', '', 24, 'https://mrarif.me/oasis/?p=556', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(557, 1, '2026-02-05 09:19:40', '2026-02-05 09:19:40', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n					Check back regularly for new articles and updates from Oasis Health Care Community.', 'Elementor Archive #557', '', 'publish', 'closed', 'closed', '', 'elementor-archive-557', '', '', '2026-02-05 10:08:16', '2026-02-05 10:08:16', '', 0, 'https://mrarif.me/oasis/?post_type=elementor_library&#038;p=557', 0, 'elementor_library', '', 0),
(558, 1, '2026-02-05 09:19:40', '2026-02-05 09:19:40', '', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:19:40', '2026-02-05 09:19:40', '', 557, 'https://mrarif.me/oasis/?p=558', 0, 'revision', '', 0),
(577, 1, '2026-02-05 09:39:00', '2026-02-05 09:39:00', '', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:39:00', '2026-02-05 09:39:00', '', 557, 'https://mrarif.me/oasis/?p=577', 0, 'revision', '', 0),
(559, 1, '2026-02-05 09:20:33', '2026-02-05 09:20:33', '<header>\n  <h1>Oasis Blog</h1>\n  <p>Helping families and caregivers stay informed and healthy.</p>\n     Senior Health • Caregiving • \n     Updates • Events\n</header>\n<main>\n   <article>\n      <img src=\"news1.jpg\" alt=\"\">\n      <h2>Senior Wellness Tips</h2>\n      <p>Short description here...</p>\n      <button>Read More</button>\n   </article>\n</main>\n<footer>\n   <p>Check back regularly for new articles and updates from <strong>Oasis Health Care Community</strong>.</p>\n</footer>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:20:33', '2026-02-05 09:20:33', '', 557, 'https://mrarif.me/oasis/?p=559', 0, 'revision', '', 0),
(560, 1, '2026-02-05 09:28:04', '2026-02-05 09:28:04', 'Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.', 'The Importance of Adult Day Care for Seniors and Disabled Adults', '', 'publish', 'open', 'open', '', 'the-importance-of-adult-day-care-for-seniors-and-disabled-adults', '', '', '2026-02-19 07:38:58', '2026-02-19 07:38:58', '', 0, 'https://mrarif.me/oasis/?p=560', 0, 'post', '', 0),
(1154, 1, '2026-02-19 07:38:52', '2026-02-19 07:38:52', '', 'Transportation-aa', '', 'inherit', 'open', 'closed', '', 'transportation-aa-2', '', '', '2026-02-19 07:38:52', '2026-02-19 07:38:52', '', 560, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-1.webp', 0, 'attachment', 'image/webp', 0),
(562, 1, '2026-02-05 09:28:04', '2026-02-05 09:28:04', 'Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.', 'The Importance of Adult Day Care for Seniors and Disabled Adults', '', 'inherit', 'closed', 'closed', '', '560-revision-v1', '', '', '2026-02-05 09:28:04', '2026-02-05 09:28:04', '', 560, 'https://mrarif.me/oasis/?p=562', 0, 'revision', '', 0),
(563, 1, '2026-02-05 09:30:15', '2026-02-05 09:30:15', 'Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.', 'How Personalized Care Plans Improve Quality of Life', '', 'publish', 'open', 'open', '', 'how-personalized-care-plans-improve-quality-of-life', '', '', '2026-02-05 09:30:15', '2026-02-05 09:30:15', '', 0, 'https://mrarif.me/oasis/?p=563', 0, 'post', '', 0),
(564, 1, '2026-02-05 09:29:41', '2026-02-05 09:29:41', '', 'How Personalized Care Plans Improve Quality of Life aa', '', 'inherit', 'open', 'closed', '', 'how-personalized-care-plans-improve-quality-of-life-aa', '', '', '2026-02-05 09:29:41', '2026-02-05 09:29:41', '', 563, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(565, 1, '2026-02-05 09:30:15', '2026-02-05 09:30:15', 'Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.', 'How Personalized Care Plans Improve Quality of Life', '', 'inherit', 'closed', 'closed', '', '563-revision-v1', '', '', '2026-02-05 09:30:15', '2026-02-05 09:30:15', '', 563, 'https://mrarif.me/oasis/?p=565', 0, 'revision', '', 0),
(566, 1, '2026-02-05 09:32:39', '2026-02-05 09:32:39', 'Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.', 'Comprehensive Services Offered by Oasis Health Care Community', '', 'publish', 'open', 'open', '', 'comprehensive-services-offered-by-oasis-health-care-community', '', '', '2026-02-05 09:32:39', '2026-02-05 09:32:39', '', 0, 'https://mrarif.me/oasis/?p=566', 0, 'post', '', 0),
(567, 1, '2026-02-05 09:32:32', '2026-02-05 09:32:32', '', 'Comprehensive Services Offered by Oasis Health Care Community aa', '', 'inherit', 'open', 'closed', '', 'comprehensive-services-offered-by-oasis-health-care-community-aa', '', '', '2026-02-05 09:32:32', '2026-02-05 09:32:32', '', 566, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(568, 1, '2026-02-05 09:32:39', '2026-02-05 09:32:39', 'Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.', 'Comprehensive Services Offered by Oasis Health Care Community', '', 'inherit', 'closed', 'closed', '', '566-revision-v1', '', '', '2026-02-05 09:32:39', '2026-02-05 09:32:39', '', 566, 'https://mrarif.me/oasis/?p=568', 0, 'revision', '', 0),
(569, 1, '2026-02-05 09:35:24', '2026-02-05 09:35:24', 'Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.', 'Engaging Activities That Promote Socialization and Wellness', '', 'publish', 'open', 'open', '', 'engaging-activities-that-promote-socialization-and-wellness', '', '', '2026-02-05 09:35:24', '2026-02-05 09:35:24', '', 0, 'https://mrarif.me/oasis/?p=569', 0, 'post', '', 0),
(570, 1, '2026-02-05 09:34:51', '2026-02-05 09:34:51', '', 'Engaging Activities That Promote Socialization and Wellness aa', '', 'inherit', 'open', 'closed', '', 'engaging-activities-that-promote-socialization-and-wellness-aa', '', '', '2026-02-05 09:34:51', '2026-02-05 09:34:51', '', 569, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(571, 1, '2026-02-05 09:35:24', '2026-02-05 09:35:24', 'Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.', 'Engaging Activities That Promote Socialization and Wellness', '', 'inherit', 'closed', 'closed', '', '569-revision-v1', '', '', '2026-02-05 09:35:24', '2026-02-05 09:35:24', '', 569, 'https://mrarif.me/oasis/?p=571', 0, 'revision', '', 0),
(572, 1, '2026-02-05 09:37:49', '2026-02-05 09:37:49', '', 'Blog single page', '', 'publish', 'closed', 'closed', '', 'blog-single-page', '', '', '2026-02-05 09:37:49', '2026-02-05 09:37:49', '', 0, 'https://mrarif.me/oasis/?elementor_library=blog-single-page', 0, 'elementor_library', '', 0),
(573, 1, '2026-02-05 09:37:49', '2026-02-05 09:37:49', '', 'Blog single page', '', 'inherit', 'closed', 'closed', '', '572-revision-v1', '', '', '2026-02-05 09:37:49', '2026-02-05 09:37:49', '', 572, 'https://mrarif.me/oasis/?p=573', 0, 'revision', '', 0),
(574, 1, '2026-02-05 09:38:01', '2026-02-05 09:38:01', '<h2>Blog</h2>', 'Blog sections', '', 'publish', 'closed', 'closed', '', 'blog-sections', '', '', '2026-02-05 09:38:01', '2026-02-05 09:38:01', '', 0, 'https://mrarif.me/oasis/?elementor_library=blog-sections', 0, 'elementor_library', '', 0),
(575, 1, '2026-02-05 09:38:01', '2026-02-05 09:38:01', '<h2>Blog</h2>', 'Blog sections', '', 'inherit', 'closed', 'closed', '', '574-revision-v1', '', '', '2026-02-05 09:38:01', '2026-02-05 09:38:01', '', 574, 'https://mrarif.me/oasis/?p=575', 0, 'revision', '', 0),
(579, 1, '2026-02-05 09:48:06', '2026-02-05 09:48:06', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:48:06', '2026-02-05 09:48:06', '', 557, 'https://mrarif.me/oasis/?p=579', 0, 'revision', '', 0),
(580, 1, '2026-02-05 09:48:26', '2026-02-05 09:48:26', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:48:26', '2026-02-05 09:48:26', '', 557, 'https://mrarif.me/oasis/?p=580', 0, 'revision', '', 0),
(581, 1, '2026-02-05 09:49:08', '2026-02-05 09:49:08', '{\n    \"astra-settings[single-post-ast-content-layout]\": {\n        \"value\": \"full-width-container\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-05 09:49:08\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '89981d14-f098-46a8-ad7b-805fd33a52e3', '', '', '2026-02-05 09:49:08', '2026-02-05 09:49:08', '', 0, 'https://mrarif.me/oasis/89981d14-f098-46a8-ad7b-805fd33a52e3/', 0, 'customize_changeset', '', 0),
(582, 1, '2026-02-05 09:49:15', '2026-02-05 09:49:15', '{\n    \"astra-settings[archive-post-ast-content-layout]\": {\n        \"value\": \"normal-width-container\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-05 09:49:15\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '859b73ea-53f9-422d-9ab7-27b5bb01350f', '', '', '2026-02-05 09:49:15', '2026-02-05 09:49:15', '', 0, 'https://mrarif.me/oasis/859b73ea-53f9-422d-9ab7-27b5bb01350f/', 0, 'customize_changeset', '', 0),
(583, 1, '2026-02-05 09:49:31', '2026-02-05 09:49:31', '{\n    \"astra-settings[archive-post-ast-content-layout]\": {\n        \"value\": \"full-width-container\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-05 09:49:31\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'e0078778-d874-47f1-98cd-d331f9191781', '', '', '2026-02-05 09:49:31', '2026-02-05 09:49:31', '', 0, 'https://mrarif.me/oasis/e0078778-d874-47f1-98cd-d331f9191781/', 0, 'customize_changeset', '', 0),
(584, 1, '2026-02-05 09:52:33', '2026-02-05 09:52:33', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:52:33', '2026-02-05 09:52:33', '', 557, 'https://mrarif.me/oasis/?p=584', 0, 'revision', '', 0),
(585, 1, '2026-02-05 09:55:40', '2026-02-05 09:55:40', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:55:40', '2026-02-05 09:55:40', '', 557, 'https://mrarif.me/oasis/?p=585', 0, 'revision', '', 0),
(586, 1, '2026-02-05 09:57:36', '2026-02-05 09:57:36', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:57:36', '2026-02-05 09:57:36', '', 557, 'https://mrarif.me/oasis/?p=586', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(587, 1, '2026-02-05 09:57:48', '2026-02-05 09:57:48', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n								<nav role=\"navigation\" aria-label=\"Pagination\" data-total=\"2\">\n				1\n<a href=\"https://mrarif.me/oasis/wp-admin/admin-ajax.php/page/2/\">2</a>			</nav>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:57:48', '2026-02-05 09:57:48', '', 557, 'https://mrarif.me/oasis/?p=587', 0, 'revision', '', 0),
(593, 1, '2026-02-05 10:08:16', '2026-02-05 10:08:16', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n					Check back regularly for new articles and updates from Oasis Health Care Community.', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 10:08:16', '2026-02-05 10:08:16', '', 557, 'https://mrarif.me/oasis/?p=593', 0, 'revision', '', 0),
(589, 1, '2026-02-05 09:58:55', '2026-02-05 09:58:55', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\">\n				<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/uncategorized/\">Uncategorized</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/hello-world/\">Hello world!</a>			</h5>\n				February 2, 2026			\n			<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n									<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\" aria-label=\"Read more about Hello world!\">\n					Read More				\n					</a>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:58:55', '2026-02-05 09:58:55', '', 557, 'https://mrarif.me/oasis/?p=589', 0, 'revision', '', 0),
(588, 1, '2026-02-05 09:58:01', '2026-02-05 09:58:01', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n				No Comments			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\">\n				<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/uncategorized/\">Uncategorized</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/hello-world/\">Hello world!</a>			</h5>\n				February 2, 2026			\n				1 Comment			\n			<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n									<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\" aria-label=\"Read more about Hello world!\">\n					Read More				\n					</a>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 09:58:01', '2026-02-05 09:58:01', '', 557, 'https://mrarif.me/oasis/?p=588', 0, 'revision', '', 0),
(590, 1, '2026-02-05 10:01:06', '2026-02-05 10:01:06', '<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Engaging-Activities-That-Promote-Socialization-and-Wellness-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/community-events-announcements/\">Community Events &amp; Announcements</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\">Engaging Activities That Promote Socialization and Wellness</a>			</h5>\n				February 5, 2026			\n			<p>Daily activities at Oasis are designed to encourage socialization, mental stimulation, and physical wellness. Programs include arts and crafts, exercise, educational activities, field trips, gardening, live entertainment, and therapeutic exercises such as yoga and mindfulness. Celebrations, group interactions, and community events help participants stay active, connected, and engaged.</p>\n									<a href=\"https://mrarif.me/oasis/engaging-activities-that-promote-socialization-and-wellness/\" title=\"Engaging Activities That Promote Socialization and Wellness\" aria-label=\"Read more about Engaging Activities That Promote Socialization and Wellness\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/updates-on-our-programs-and-services/\">Updates on Our Programs and Services</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\">Comprehensive Services Offered by Oasis Health Care Community</a>			</h5>\n				February 5, 2026			\n			<p>Oasis Health Care Community offers a wide range of services designed to support individuals and families. Our Adult Day Care program provides nursing care, meals, therapeutic activities, and social engagement. Oasis Home Care delivers non-medical in-home support, while our Non-Medical Transportation service ensures safe and reliable access to care and community resources. Together, these services create continuity of care and enhance quality of life.</p>\n									<a href=\"https://mrarif.me/oasis/comprehensive-services-offered-by-oasis-health-care-community/\" title=\"Comprehensive Services Offered by Oasis Health Care Community\" aria-label=\"Read more about Comprehensive Services Offered by Oasis Health Care Community\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/How-Personalized-Care-Plans-Improve-Quality-of-Life-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/caregiving-resources/\">Caregiving Resources</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\">How Personalized Care Plans Improve Quality of Life</a>			</h5>\n				February 5, 2026			\n			<p>Personalized care plans ensure that every individual receives support tailored to their unique needs, preferences, and goals. At Oasis, care plans are developed collaboratively and include daily health monitoring, personal caregiving, medication reminders, and nutritional support. This person-centered approach helps promote dignity, comfort, and consistency in care for seniors and disabled adults.</p>\n									<a href=\"https://mrarif.me/oasis/how-personalized-care-plans-improve-quality-of-life/\" title=\"How Personalized Care Plans Improve Quality of Life\" aria-label=\"Read more about How Personalized Care Plans Improve Quality of Life\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\">\n				<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Seniors-and-Disabled-Adults-aa.jpg\" alt=\"\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/senior-health-wellness-tips/\">Senior Health &amp; Wellness Tips</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\">The Importance of Adult Day Care for Seniors and Disabled Adults</a>			</h5>\n				February 5, 2026			\n			<p>Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.</p>\n									<a href=\"https://mrarif.me/oasis/the-importance-of-adult-day-care-for-seniors-and-disabled-adults/\" title=\"The Importance of Adult Day Care for Seniors and Disabled Adults\" aria-label=\"Read more about The Importance of Adult Day Care for Seniors and Disabled Adults\">\n					Read More				\n					</a>\n			<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\">\n				<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" />			</a>\n				<a href=\"https://mrarif.me/oasis/category/uncategorized/\">Uncategorized</a>			\n										<h5>\n				<a href=\"https://mrarif.me/oasis/hello-world/\">Hello world!</a>			</h5>\n				February 2, 2026			\n			<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n									<a href=\"https://mrarif.me/oasis/hello-world/\" title=\"Hello world!\" aria-label=\"Read more about Hello world!\">\n					Read More				\n					</a>', 'Elementor Archive #557', '', 'inherit', 'closed', 'closed', '', '557-revision-v1', '', '', '2026-02-05 10:01:06', '2026-02-05 10:01:06', '', 557, 'https://mrarif.me/oasis/?p=590', 0, 'revision', '', 0),
(591, 1, '2026-02-05 10:01:52', '2026-02-05 10:01:52', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'inherit', 'closed', 'closed', '', '1-revision-v1', '', '', '2026-02-05 10:01:52', '2026-02-05 10:01:52', '', 1, 'https://mrarif.me/oasis/?p=591', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(633, 1, '2026-02-08 12:40:38', '2026-02-08 12:40:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:40:38', '2026-02-08 12:40:38', '', 12, 'https://mrarif.me/oasis/?p=633', 0, 'revision', '', 0),
(594, 1, '2026-02-05 10:08:56', '2026-02-05 10:08:56', '<ul>\n							<li>\n									</li>\n						</ul>', 'Elementor Single Post #594', '', 'publish', 'closed', 'closed', '', 'elementor-single-post-594', '', '', '2026-02-05 10:15:59', '2026-02-05 10:15:59', '', 0, 'https://mrarif.me/oasis/?post_type=elementor_library&#038;p=594', 0, 'elementor_library', '', 0),
(595, 1, '2026-02-05 10:08:56', '2026-02-05 10:08:56', '', 'Elementor Single Post #594', '', 'inherit', 'closed', 'closed', '', '594-revision-v1', '', '', '2026-02-05 10:08:56', '2026-02-05 10:08:56', '', 594, 'https://mrarif.me/oasis/?p=595', 0, 'revision', '', 0),
(597, 1, '2026-02-05 10:15:59', '2026-02-05 10:15:59', '<ul>\n							<li>\n									</li>\n						</ul>', 'Elementor Single Post #594', '', 'inherit', 'closed', 'closed', '', '594-revision-v1', '', '', '2026-02-05 10:15:59', '2026-02-05 10:15:59', '', 594, 'https://mrarif.me/oasis/?p=597', 0, 'revision', '', 0),
(596, 1, '2026-02-05 10:12:40', '2026-02-05 10:12:40', '<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n									</li>\n						</ul>', 'Elementor Single Post #594', '', 'inherit', 'closed', 'closed', '', '594-revision-v1', '', '', '2026-02-05 10:12:40', '2026-02-05 10:12:40', '', 594, 'https://mrarif.me/oasis/?p=596', 0, 'revision', '', 0),
(601, 1, '2026-02-05 10:20:02', '2026-02-05 10:20:02', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:02', '2026-02-05 10:20:02', '', 26, 'https://mrarif.me/oasis/?p=601', 0, 'revision', '', 0),
(602, 1, '2026-02-05 10:20:09', '2026-02-05 10:20:09', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:09', '2026-02-05 10:20:09', '', 26, 'https://mrarif.me/oasis/?p=602', 0, 'revision', '', 0),
(603, 1, '2026-02-05 10:20:09', '2026-02-05 10:20:09', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:09', '2026-02-05 10:20:09', '', 26, 'https://mrarif.me/oasis/?p=603', 0, 'revision', '', 0),
(604, 1, '2026-02-05 10:20:09', '2026-02-05 10:20:09', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:09', '2026-02-05 10:20:09', '', 26, 'https://mrarif.me/oasis/?p=604', 0, 'revision', '', 0),
(605, 1, '2026-02-05 10:20:18', '2026-02-05 10:20:18', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:18', '2026-02-05 10:20:18', '', 26, 'https://mrarif.me/oasis/?p=605', 0, 'revision', '', 0),
(606, 1, '2026-02-05 10:20:18', '2026-02-05 10:20:18', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:18', '2026-02-05 10:20:18', '', 26, 'https://mrarif.me/oasis/?p=606', 0, 'revision', '', 0),
(607, 1, '2026-02-05 10:20:18', '2026-02-05 10:20:18', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:18', '2026-02-05 10:20:18', '', 26, 'https://mrarif.me/oasis/?p=607', 0, 'revision', '', 0),
(608, 1, '2026-02-05 10:21:35', '2026-02-05 10:21:35', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:21:35', '2026-02-05 10:21:35', '', 26, 'https://mrarif.me/oasis/?p=608', 0, 'revision', '', 0),
(609, 1, '2026-02-05 10:21:35', '2026-02-05 10:21:35', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:21:35', '2026-02-05 10:21:35', '', 26, 'https://mrarif.me/oasis/?p=609', 0, 'revision', '', 0),
(610, 1, '2026-02-05 10:21:35', '2026-02-05 10:21:35', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:21:35', '2026-02-05 10:21:35', '', 26, 'https://mrarif.me/oasis/?p=610', 0, 'revision', '', 0),
(611, 1, '2026-02-05 10:22:44', '2026-02-05 10:22:44', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'publish', 'closed', 'closed', '', 'schedule-your-appointment', '', '', '2026-02-09 08:44:53', '2026-02-09 08:44:53', '', 0, 'https://mrarif.me/oasis/?page_id=611', 0, 'page', '', 0),
(612, 1, '2026-02-05 10:22:44', '2026-02-05 10:22:44', '', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:22:44', '2026-02-05 10:22:44', '', 611, 'https://mrarif.me/oasis/?p=612', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(613, 1, '2026-02-05 10:23:46', '2026-02-05 10:23:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:46', '2026-02-05 10:23:46', '', 12, 'https://mrarif.me/oasis/?p=613', 0, 'revision', '', 0),
(599, 1, '2026-02-05 10:20:02', '2026-02-05 10:20:02', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:02', '2026-02-05 10:20:02', '', 26, 'https://mrarif.me/oasis/?p=599', 0, 'revision', '', 0),
(600, 1, '2026-02-05 10:20:02', '2026-02-05 10:20:02', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-05 10:20:02', '2026-02-05 10:20:02', '', 26, 'https://mrarif.me/oasis/?p=600', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(614, 1, '2026-02-05 10:23:46', '2026-02-05 10:23:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:46', '2026-02-05 10:23:46', '', 12, 'https://mrarif.me/oasis/?p=614', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(615, 1, '2026-02-05 10:23:46', '2026-02-05 10:23:46', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:46', '2026-02-05 10:23:46', '', 12, 'https://mrarif.me/oasis/?p=615', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(616, 1, '2026-02-05 10:23:55', '2026-02-05 10:23:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:55', '2026-02-05 10:23:55', '', 12, 'https://mrarif.me/oasis/?p=616', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(617, 1, '2026-02-05 10:23:55', '2026-02-05 10:23:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"#\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:55', '2026-02-05 10:23:55', '', 12, 'https://mrarif.me/oasis/?p=617', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(618, 1, '2026-02-05 10:23:55', '2026-02-05 10:23:55', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-05 10:23:55', '2026-02-05 10:23:55', '', 12, 'https://mrarif.me/oasis/?p=618', 0, 'revision', '', 0),
(619, 1, '2026-02-05 10:24:12', '2026-02-05 10:24:12', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 10:24:12', '2026-02-05 10:24:12', '', 291, 'https://mrarif.me/oasis/?p=619', 0, 'revision', '', 0),
(623, 1, '2026-02-05 10:27:58', '2026-02-05 10:27:58', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:27:58', '2026-02-05 10:27:58', '', 611, 'https://mrarif.me/oasis/?p=623', 0, 'revision', '', 0),
(621, 1, '2026-02-05 10:27:57', '2026-02-05 10:27:57', '', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:27:57', '2026-02-05 10:27:57', '', 611, 'https://mrarif.me/oasis/?p=621', 0, 'revision', '', 0),
(622, 1, '2026-02-05 10:27:57', '2026-02-05 10:27:57', '', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:27:57', '2026-02-05 10:27:57', '', 611, 'https://mrarif.me/oasis/?p=622', 0, 'revision', '', 0),
(624, 1, '2026-02-05 10:28:26', '2026-02-05 10:28:26', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:28:26', '2026-02-05 10:28:26', '', 611, 'https://mrarif.me/oasis/?p=624', 0, 'revision', '', 0),
(625, 1, '2026-02-05 10:28:26', '2026-02-05 10:28:26', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:28:26', '2026-02-05 10:28:26', '', 611, 'https://mrarif.me/oasis/?p=625', 0, 'revision', '', 0),
(626, 1, '2026-02-05 10:28:26', '2026-02-05 10:28:26', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-05 10:28:26', '2026-02-05 10:28:26', '', 611, 'https://mrarif.me/oasis/?p=626', 0, 'revision', '', 0),
(627, 1, '2026-02-05 10:31:28', '2026-02-05 10:31:28', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 10:31:28', '2026-02-05 10:31:28', '', 291, 'https://mrarif.me/oasis/?p=627', 0, 'revision', '', 0),
(628, 1, '2026-02-05 10:32:11', '2026-02-05 10:32:11', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 10:32:11', '2026-02-05 10:32:11', '', 291, 'https://mrarif.me/oasis/?p=628', 0, 'revision', '', 0),
(629, 1, '2026-02-05 10:32:24', '2026-02-05 10:32:24', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 10:32:24', '2026-02-05 10:32:24', '', 291, 'https://mrarif.me/oasis/?p=629', 0, 'revision', '', 0),
(630, 1, '2026-02-05 10:32:37', '2026-02-05 10:32:37', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-05 10:32:37', '2026-02-05 10:32:37', '', 291, 'https://mrarif.me/oasis/?p=630', 0, 'revision', '', 0),
(631, 1, '2026-02-14 07:54:02', '2026-02-05 10:37:54', ' ', '', '', 'publish', 'closed', 'closed', '', '631', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=631', 20, 'nav_menu_item', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(634, 1, '2026-02-08 12:40:38', '2026-02-08 12:40:38', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:40:38', '2026-02-08 12:40:38', '', 12, 'https://mrarif.me/oasis/?p=634', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(635, 1, '2026-02-08 12:40:39', '2026-02-08 12:40:39', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:40:39', '2026-02-08 12:40:39', '', 12, 'https://mrarif.me/oasis/?p=635', 0, 'revision', '', 0),
(636, 1, '2026-02-08 12:41:55', '2026-02-08 12:41:55', '', 'Oasis-Adult-Day-Care-Center-logo-ab', '', 'inherit', 'open', 'closed', '', 'oasis-adult-day-care-center-logo-ab', '', '', '2026-02-08 12:41:55', '2026-02-08 12:41:55', '', 291, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png', 0, 'attachment', 'image/png', 0),
(637, 1, '2026-02-08 12:42:01', '2026-02-08 12:42:01', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:42:01', '2026-02-08 12:42:01', '', 291, 'https://mrarif.me/oasis/?p=637', 0, 'revision', '', 0),
(638, 1, '2026-02-08 12:42:37', '2026-02-08 12:42:37', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:42:37', '2026-02-08 12:42:37', '', 291, 'https://mrarif.me/oasis/?p=638', 0, 'revision', '', 0),
(639, 1, '2026-02-08 12:43:07', '2026-02-08 12:43:07', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:43:07', '2026-02-08 12:43:07', '', 291, 'https://mrarif.me/oasis/?p=639', 0, 'revision', '', 0),
(640, 1, '2026-02-08 12:43:15', '2026-02-08 12:43:15', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:43:15', '2026-02-08 12:43:15', '', 291, 'https://mrarif.me/oasis/?p=640', 0, 'revision', '', 0),
(641, 1, '2026-02-08 12:44:06', '2026-02-08 12:44:06', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:44:06', '2026-02-08 12:44:06', '', 291, 'https://mrarif.me/oasis/?p=641', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(642, 1, '2026-02-08 12:44:26', '2026-02-08 12:44:26', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:44:26', '2026-02-08 12:44:26', '', 291, 'https://mrarif.me/oasis/?p=642', 0, 'revision', '', 0),
(643, 1, '2026-02-08 12:44:58', '2026-02-08 12:44:58', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-08 12:44:58', '2026-02-08 12:44:58', '', 291, 'https://mrarif.me/oasis/?p=643', 0, 'revision', '', 0),
(644, 1, '2026-02-08 12:56:36', '2026-02-08 12:56:36', '', 'Oasis Adult Day Care Center aa', '', 'inherit', 'open', 'closed', '', 'oasis-adult-day-care-center-aa', '', '', '2026-02-08 12:56:36', '2026-02-08 12:56:36', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(645, 1, '2026-02-08 12:56:44', '2026-02-08 12:56:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:56:44', '2026-02-08 12:56:44', '', 12, 'https://mrarif.me/oasis/?p=645', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(646, 1, '2026-02-08 12:56:44', '2026-02-08 12:56:44', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:56:44', '2026-02-08 12:56:44', '', 12, 'https://mrarif.me/oasis/?p=646', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(647, 1, '2026-02-08 12:56:45', '2026-02-08 12:56:45', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:56:45', '2026-02-08 12:56:45', '', 12, 'https://mrarif.me/oasis/?p=647', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(648, 1, '2026-02-08 12:57:23', '2026-02-08 12:57:23', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:57:23', '2026-02-08 12:57:23', '', 12, 'https://mrarif.me/oasis/?p=648', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(649, 1, '2026-02-08 12:57:23', '2026-02-08 12:57:23', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:57:23', '2026-02-08 12:57:23', '', 12, 'https://mrarif.me/oasis/?p=649', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(650, 1, '2026-02-08 12:57:24', '2026-02-08 12:57:24', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:57:24', '2026-02-08 12:57:24', '', 12, 'https://mrarif.me/oasis/?p=650', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(651, 1, '2026-02-08 12:58:22', '2026-02-08 12:58:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:22', '2026-02-08 12:58:22', '', 12, 'https://mrarif.me/oasis/?p=651', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(652, 1, '2026-02-08 12:58:22', '2026-02-08 12:58:22', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:22', '2026-02-08 12:58:22', '', 12, 'https://mrarif.me/oasis/?p=652', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(653, 1, '2026-02-08 12:58:23', '2026-02-08 12:58:23', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:23', '2026-02-08 12:58:23', '', 12, 'https://mrarif.me/oasis/?p=653', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(654, 1, '2026-02-08 12:58:37', '2026-02-08 12:58:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:37', '2026-02-08 12:58:37', '', 12, 'https://mrarif.me/oasis/?p=654', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(655, 1, '2026-02-08 12:58:37', '2026-02-08 12:58:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:37', '2026-02-08 12:58:37', '', 12, 'https://mrarif.me/oasis/?p=655', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(656, 1, '2026-02-08 12:58:37', '2026-02-08 12:58:37', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 12:58:37', '2026-02-08 12:58:37', '', 12, 'https://mrarif.me/oasis/?p=656', 0, 'revision', '', 0),
(1122, 1, '2026-02-19 07:05:03', '2026-02-19 07:05:03', '', 'Oasis-Adult-DayCare-Center', '', 'inherit', 'open', 'closed', '', 'oasis-adult-daycare-center', '', '', '2026-02-19 07:05:03', '2026-02-19 07:05:03', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-DayCare-Center.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(658, 1, '2026-02-08 13:06:52', '2026-02-08 13:06:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:06:52', '2026-02-08 13:06:52', '', 12, 'https://mrarif.me/oasis/?p=658', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(659, 1, '2026-02-08 13:06:52', '2026-02-08 13:06:52', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:06:52', '2026-02-08 13:06:52', '', 12, 'https://mrarif.me/oasis/?p=659', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(660, 1, '2026-02-08 13:06:53', '2026-02-08 13:06:53', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:06:53', '2026-02-08 13:06:53', '', 12, 'https://mrarif.me/oasis/?p=660', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(661, 1, '2026-02-08 13:07:26', '2026-02-08 13:07:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:26', '2026-02-08 13:07:26', '', 12, 'https://mrarif.me/oasis/?p=661', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(662, 1, '2026-02-08 13:07:26', '2026-02-08 13:07:26', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:26', '2026-02-08 13:07:26', '', 12, 'https://mrarif.me/oasis/?p=662', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(663, 1, '2026-02-08 13:07:27', '2026-02-08 13:07:27', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:27', '2026-02-08 13:07:27', '', 12, 'https://mrarif.me/oasis/?p=663', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(664, 1, '2026-02-08 13:07:41', '2026-02-08 13:07:41', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:41', '2026-02-08 13:07:41', '', 12, 'https://mrarif.me/oasis/?p=664', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(665, 1, '2026-02-08 13:07:41', '2026-02-08 13:07:41', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:41', '2026-02-08 13:07:41', '', 12, 'https://mrarif.me/oasis/?p=665', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(666, 1, '2026-02-08 13:07:42', '2026-02-08 13:07:42', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:07:42', '2026-02-08 13:07:42', '', 12, 'https://mrarif.me/oasis/?p=666', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(667, 1, '2026-02-08 13:08:08', '2026-02-08 13:08:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:08', '2026-02-08 13:08:08', '', 12, 'https://mrarif.me/oasis/?p=667', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(668, 1, '2026-02-08 13:08:08', '2026-02-08 13:08:08', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:08', '2026-02-08 13:08:08', '', 12, 'https://mrarif.me/oasis/?p=668', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(669, 1, '2026-02-08 13:08:09', '2026-02-08 13:08:09', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:09', '2026-02-08 13:08:09', '', 12, 'https://mrarif.me/oasis/?p=669', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(670, 1, '2026-02-08 13:08:54', '2026-02-08 13:08:54', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:54', '2026-02-08 13:08:54', '', 12, 'https://mrarif.me/oasis/?p=670', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(671, 1, '2026-02-08 13:08:54', '2026-02-08 13:08:54', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:54', '2026-02-08 13:08:54', '', 12, 'https://mrarif.me/oasis/?p=671', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(672, 1, '2026-02-08 13:08:54', '2026-02-08 13:08:54', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:08:54', '2026-02-08 13:08:54', '', 12, 'https://mrarif.me/oasis/?p=672', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(673, 1, '2026-02-08 13:09:06', '2026-02-08 13:09:06', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:09:06', '2026-02-08 13:09:06', '', 12, 'https://mrarif.me/oasis/?p=673', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(674, 1, '2026-02-08 13:09:07', '2026-02-08 13:09:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:09:07', '2026-02-08 13:09:07', '', 12, 'https://mrarif.me/oasis/?p=674', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(675, 1, '2026-02-08 13:09:07', '2026-02-08 13:09:07', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:09:07', '2026-02-08 13:09:07', '', 12, 'https://mrarif.me/oasis/?p=675', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(676, 1, '2026-02-08 13:10:03', '2026-02-08 13:10:03', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:10:03', '2026-02-08 13:10:03', '', 12, 'https://mrarif.me/oasis/?p=676', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(677, 1, '2026-02-08 13:10:04', '2026-02-08 13:10:04', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:10:04', '2026-02-08 13:10:04', '', 12, 'https://mrarif.me/oasis/?p=677', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(678, 1, '2026-02-08 13:10:05', '2026-02-08 13:10:05', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:10:05', '2026-02-08 13:10:05', '', 12, 'https://mrarif.me/oasis/?p=678', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(679, 1, '2026-02-08 13:26:58', '2026-02-08 13:26:58', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:26:58', '2026-02-08 13:26:58', '', 12, 'https://mrarif.me/oasis/?p=679', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(680, 1, '2026-02-08 13:26:59', '2026-02-08 13:26:59', '<h1>Welcome To Oasis Adult Day\nCare Center</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:26:59', '2026-02-08 13:26:59', '', 12, 'https://mrarif.me/oasis/?p=680', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(681, 1, '2026-02-08 13:26:59', '2026-02-08 13:26:59', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 13:26:59', '2026-02-08 13:26:59', '', 12, 'https://mrarif.me/oasis/?p=681', 0, 'revision', '', 0),
(682, 1, '2026-02-08 13:27:29', '2026-02-08 13:27:29', '', 'Default Kit', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2026-02-08 13:27:29', '2026-02-08 13:27:29', '', 7, 'https://mrarif.me/oasis/?p=682', 0, 'revision', '', 0),
(683, 1, '2026-02-08 13:33:54', '2026-02-08 13:33:54', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-08 13:33:54', '2026-02-08 13:33:54', '', 611, 'https://mrarif.me/oasis/?p=683', 0, 'revision', '', 0),
(684, 1, '2026-02-08 13:33:54', '2026-02-08 13:33:54', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-08 13:33:54', '2026-02-08 13:33:54', '', 611, 'https://mrarif.me/oasis/?p=684', 0, 'revision', '', 0),
(685, 1, '2026-02-08 13:33:54', '2026-02-08 13:33:54', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-08 13:33:54', '2026-02-08 13:33:54', '', 611, 'https://mrarif.me/oasis/?p=685', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(686, 1, '2026-02-08 13:40:35', '2026-02-08 13:40:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-08 13:40:35', '2026-02-08 13:40:35', '', 14, 'https://mrarif.me/oasis/?p=686', 0, 'revision', '', 0),
(687, 1, '2026-02-08 13:40:36', '2026-02-08 13:40:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate,professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-08 13:40:36', '2026-02-08 13:40:36', '', 14, 'https://mrarif.me/oasis/?p=687', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(688, 1, '2026-02-08 13:40:36', '2026-02-08 13:40:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-08 13:40:36', '2026-02-08 13:40:36', '', 14, 'https://mrarif.me/oasis/?p=688', 0, 'revision', '', 0),
(689, 1, '2026-02-08 13:43:22', '2026-02-08 13:43:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-08 13:43:22', '2026-02-08 13:43:22', '', 301, 'https://mrarif.me/oasis/?p=689', 0, 'revision', '', 0),
(690, 1, '2026-02-08 13:44:10', '2026-02-08 13:44:10', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-08 13:44:10', '2026-02-08 13:44:10', '', 24, 'https://mrarif.me/oasis/?p=690', 0, 'revision', '', 0),
(691, 1, '2026-02-08 13:44:10', '2026-02-08 13:44:10', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (PRN / Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-08 13:44:10', '2026-02-08 13:44:10', '', 24, 'https://mrarif.me/oasis/?p=691', 0, 'revision', '', 0),
(692, 1, '2026-02-08 13:44:10', '2026-02-08 13:44:10', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-08 13:44:10', '2026-02-08 13:44:10', '', 24, 'https://mrarif.me/oasis/?p=692', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(693, 1, '2026-02-08 15:34:43', '2026-02-08 15:34:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"https://mrarif.me/oasis/careers/\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'publish', 'closed', 'closed', '', 'oasis-home-care', '', '', '2026-02-09 10:43:39', '2026-02-09 10:43:39', '', 0, 'https://mrarif.me/oasis/?page_id=693', 0, 'page', '', 0),
(694, 1, '2026-02-08 15:34:43', '2026-02-08 15:34:43', '', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:34:43', '2026-02-08 15:34:43', '', 693, 'https://mrarif.me/oasis/?p=694', 0, 'revision', '', 0),
(695, 1, '2026-02-14 07:54:02', '2026-02-08 15:35:00', ' ', '', '', 'publish', 'closed', 'closed', '', '695', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=695', 13, 'nav_menu_item', '', 0),
(696, 1, '2026-02-08 15:38:04', '2026-02-08 15:38:04', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:38:04', '2026-02-08 15:38:04', '', 12, 'https://mrarif.me/oasis/?p=696', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(697, 1, '2026-02-08 15:38:04', '2026-02-08 15:38:04', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:38:04', '2026-02-08 15:38:04', '', 12, 'https://mrarif.me/oasis/?p=697', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(698, 1, '2026-02-08 15:38:05', '2026-02-08 15:38:05', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:38:05', '2026-02-08 15:38:05', '', 12, 'https://mrarif.me/oasis/?p=698', 0, 'revision', '', 0),
(699, 1, '2026-02-08 15:41:31', '2026-02-08 15:41:31', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-08 15:41:31', '2026-02-08 15:41:31', '', 18, 'https://mrarif.me/oasis/?p=699', 0, 'revision', '', 0),
(700, 1, '2026-02-08 15:41:31', '2026-02-08 15:41:31', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-08 15:41:31', '2026-02-08 15:41:31', '', 18, 'https://mrarif.me/oasis/?p=700', 0, 'revision', '', 0),
(701, 1, '2026-02-08 15:41:32', '2026-02-08 15:41:32', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-08 15:41:32', '2026-02-08 15:41:32', '', 18, 'https://mrarif.me/oasis/?p=701', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(702, 1, '2026-02-08 15:45:22', '2026-02-08 15:45:22', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:45:22', '2026-02-08 15:45:22', '', 12, 'https://mrarif.me/oasis/?p=702', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(703, 1, '2026-02-08 15:45:22', '2026-02-08 15:45:22', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:45:22', '2026-02-08 15:45:22', '', 12, 'https://mrarif.me/oasis/?p=703', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(704, 1, '2026-02-08 15:45:22', '2026-02-08 15:45:22', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-08 15:45:22', '2026-02-08 15:45:22', '', 12, 'https://mrarif.me/oasis/?p=704', 0, 'revision', '', 0),
(705, 1, '2026-02-08 15:49:22', '2026-02-08 15:49:22', '', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:22', '2026-02-08 15:49:22', '', 693, 'https://mrarif.me/oasis/?p=705', 0, 'revision', '', 0),
(706, 1, '2026-02-08 15:49:22', '2026-02-08 15:49:22', '', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:22', '2026-02-08 15:49:22', '', 693, 'https://mrarif.me/oasis/?p=706', 0, 'revision', '', 0),
(714, 1, '2026-02-08 16:30:12', '2026-02-08 16:30:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:30:12', '2026-02-08 16:30:12', '', 693, 'https://mrarif.me/oasis/?p=714', 0, 'revision', '', 0),
(707, 1, '2026-02-08 15:49:22', '2026-02-08 15:49:22', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:22', '2026-02-08 15:49:22', '', 693, 'https://mrarif.me/oasis/?p=707', 0, 'revision', '', 0),
(708, 1, '2026-02-08 15:49:31', '2026-02-08 15:49:31', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:31', '2026-02-08 15:49:31', '', 693, 'https://mrarif.me/oasis/?p=708', 0, 'revision', '', 0),
(709, 1, '2026-02-08 15:49:31', '2026-02-08 15:49:31', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:31', '2026-02-08 15:49:31', '', 693, 'https://mrarif.me/oasis/?p=709', 0, 'revision', '', 0),
(710, 1, '2026-02-08 15:49:31', '2026-02-08 15:49:31', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 15:49:31', '2026-02-08 15:49:31', '', 693, 'https://mrarif.me/oasis/?p=710', 0, 'revision', '', 0),
(711, 1, '2026-02-08 16:29:25', '2026-02-08 16:29:25', '', 'Oasis Home Care ss', '', 'inherit', 'open', 'closed', '', 'oasis-home-care-ss', '', '', '2026-02-08 16:29:25', '2026-02-08 16:29:25', '', 693, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg', 0, 'attachment', 'image/jpeg', 0),
(712, 1, '2026-02-08 16:30:11', '2026-02-08 16:30:11', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:30:11', '2026-02-08 16:30:11', '', 693, 'https://mrarif.me/oasis/?p=712', 0, 'revision', '', 0),
(713, 1, '2026-02-08 16:30:11', '2026-02-08 16:30:11', '<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:30:11', '2026-02-08 16:30:11', '', 693, 'https://mrarif.me/oasis/?p=713', 0, 'revision', '', 0),
(715, 1, '2026-02-08 16:31:06', '2026-02-08 16:31:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:31:06', '2026-02-08 16:31:06', '', 693, 'https://mrarif.me/oasis/?p=715', 0, 'revision', '', 0),
(716, 1, '2026-02-08 16:31:06', '2026-02-08 16:31:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:31:06', '2026-02-08 16:31:06', '', 693, 'https://mrarif.me/oasis/?p=716', 0, 'revision', '', 0),
(717, 1, '2026-02-08 16:31:06', '2026-02-08 16:31:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 16:31:06', '2026-02-08 16:31:06', '', 693, 'https://mrarif.me/oasis/?p=717', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(719, 1, '2026-02-08 17:18:27', '2026-02-08 17:18:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:27', '2026-02-08 17:18:27', '', 693, 'https://mrarif.me/oasis/?p=719', 0, 'revision', '', 0),
(720, 1, '2026-02-08 17:18:27', '2026-02-08 17:18:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:27', '2026-02-08 17:18:27', '', 693, 'https://mrarif.me/oasis/?p=720', 0, 'revision', '', 0),
(721, 1, '2026-02-08 17:18:27', '2026-02-08 17:18:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:27', '2026-02-08 17:18:27', '', 693, 'https://mrarif.me/oasis/?p=721', 0, 'revision', '', 0),
(722, 1, '2026-02-08 17:18:36', '2026-02-08 17:18:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:36', '2026-02-08 17:18:36', '', 693, 'https://mrarif.me/oasis/?p=722', 0, 'revision', '', 0),
(723, 1, '2026-02-08 17:18:36', '2026-02-08 17:18:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:36', '2026-02-08 17:18:36', '', 693, 'https://mrarif.me/oasis/?p=723', 0, 'revision', '', 0),
(724, 1, '2026-02-08 17:18:36', '2026-02-08 17:18:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:18:36', '2026-02-08 17:18:36', '', 693, 'https://mrarif.me/oasis/?p=724', 0, 'revision', '', 0),
(728, 1, '2026-02-08 17:28:43', '2026-02-08 17:28:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:28:43', '2026-02-08 17:28:43', '', 693, 'https://mrarif.me/oasis/?p=728', 0, 'revision', '', 0),
(726, 1, '2026-02-08 17:28:43', '2026-02-08 17:28:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:28:43', '2026-02-08 17:28:43', '', 693, 'https://mrarif.me/oasis/?p=726', 0, 'revision', '', 0),
(727, 1, '2026-02-08 17:28:43', '2026-02-08 17:28:43', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:28:43', '2026-02-08 17:28:43', '', 693, 'https://mrarif.me/oasis/?p=727', 0, 'revision', '', 0),
(729, 1, '2026-02-08 17:32:00', '2026-02-08 17:32:00', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:32:00', '2026-02-08 17:32:00', '', 693, 'https://mrarif.me/oasis/?p=729', 0, 'revision', '', 0),
(730, 1, '2026-02-08 17:32:00', '2026-02-08 17:32:00', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs.', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:32:00', '2026-02-08 17:32:00', '', 693, 'https://mrarif.me/oasis/?p=730', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(731, 1, '2026-02-08 17:32:00', '2026-02-08 17:32:00', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:32:00', '2026-02-08 17:32:00', '', 693, 'https://mrarif.me/oasis/?p=731', 0, 'revision', '', 0),
(732, 1, '2026-02-08 17:50:46', '2026-02-08 17:50:46', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:50:46', '2026-02-08 17:50:46', '', 693, 'https://mrarif.me/oasis/?p=732', 0, 'revision', '', 0),
(733, 1, '2026-02-08 17:50:46', '2026-02-08 17:50:46', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:50:46', '2026-02-08 17:50:46', '', 693, 'https://mrarif.me/oasis/?p=733', 0, 'revision', '', 0),
(734, 1, '2026-02-08 17:50:47', '2026-02-08 17:50:47', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:50:47', '2026-02-08 17:50:47', '', 693, 'https://mrarif.me/oasis/?p=734', 0, 'revision', '', 0),
(738, 1, '2026-02-08 17:55:20', '2026-02-08 17:55:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:55:20', '2026-02-08 17:55:20', '', 693, 'https://mrarif.me/oasis/?p=738', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(736, 1, '2026-02-08 17:55:20', '2026-02-08 17:55:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:55:20', '2026-02-08 17:55:20', '', 693, 'https://mrarif.me/oasis/?p=736', 0, 'revision', '', 0),
(737, 1, '2026-02-08 17:55:20', '2026-02-08 17:55:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:55:20', '2026-02-08 17:55:20', '', 693, 'https://mrarif.me/oasis/?p=737', 0, 'revision', '', 0),
(739, 1, '2026-02-08 17:56:24', '2026-02-08 17:56:24', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:56:24', '2026-02-08 17:56:24', '', 693, 'https://mrarif.me/oasis/?p=739', 0, 'revision', '', 0),
(740, 1, '2026-02-08 17:56:25', '2026-02-08 17:56:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:56:25', '2026-02-08 17:56:25', '', 693, 'https://mrarif.me/oasis/?p=740', 0, 'revision', '', 0),
(741, 1, '2026-02-08 17:56:25', '2026-02-08 17:56:25', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 17:56:25', '2026-02-08 17:56:25', '', 693, 'https://mrarif.me/oasis/?p=741', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(742, 1, '2026-02-08 18:04:52', '2026-02-08 18:04:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:04:52', '2026-02-08 18:04:52', '', 693, 'https://mrarif.me/oasis/?p=742', 0, 'revision', '', 0),
(743, 1, '2026-02-08 18:04:52', '2026-02-08 18:04:52', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:04:52', '2026-02-08 18:04:52', '', 693, 'https://mrarif.me/oasis/?p=743', 0, 'revision', '', 0),
(744, 1, '2026-02-08 18:04:53', '2026-02-08 18:04:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:04:53', '2026-02-08 18:04:53', '', 693, 'https://mrarif.me/oasis/?p=744', 0, 'revision', '', 0),
(745, 1, '2026-02-08 18:32:37', '2026-02-08 18:32:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:32:37', '2026-02-08 18:32:37', '', 693, 'https://mrarif.me/oasis/?p=745', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(746, 1, '2026-02-08 18:32:37', '2026-02-08 18:32:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:32:37', '2026-02-08 18:32:37', '', 693, 'https://mrarif.me/oasis/?p=746', 0, 'revision', '', 0),
(747, 1, '2026-02-08 18:32:38', '2026-02-08 18:32:38', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-08 18:32:38', '2026-02-08 18:32:38', '', 693, 'https://mrarif.me/oasis/?p=747', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(748, 1, '2026-02-09 05:36:03', '2026-02-09 05:36:03', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:03', '2026-02-09 05:36:03', '', 12, 'https://mrarif.me/oasis/?p=748', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(749, 1, '2026-02-09 05:36:03', '2026-02-09 05:36:03', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>					\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:03', '2026-02-09 05:36:03', '', 12, 'https://mrarif.me/oasis/?p=749', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(750, 1, '2026-02-09 05:36:04', '2026-02-09 05:36:04', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:04', '2026-02-09 05:36:04', '', 12, 'https://mrarif.me/oasis/?p=750', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(751, 1, '2026-02-09 05:36:50', '2026-02-09 05:36:50', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:50', '2026-02-09 05:36:50', '', 12, 'https://mrarif.me/oasis/?p=751', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(752, 1, '2026-02-09 05:36:50', '2026-02-09 05:36:50', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:50', '2026-02-09 05:36:50', '', 12, 'https://mrarif.me/oasis/?p=752', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(753, 1, '2026-02-09 05:36:51', '2026-02-09 05:36:51', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 05:36:51', '2026-02-09 05:36:51', '', 12, 'https://mrarif.me/oasis/?p=753', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(760, 1, '2026-02-09 05:46:36', '2026-02-09 05:46:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:46:36', '2026-02-09 05:46:36', '', 14, 'https://mrarif.me/oasis/?p=760', 0, 'revision', '', 0),
(755, 1, '2026-02-09 05:41:54', '2026-02-09 05:41:54', '{\n    \"astra-settings[global-color-palette]\": {\n        \"value\": {\n            \"palette\": [\n                \"#108490\",\n                \"#ef4922\",\n                \"#000000\",\n                \"#373737\",\n                \"#FFFFFF\",\n                \"#f0f7f8\",\n                \"#111111\",\n                \"#D1D5DB\",\n                \"#fec010\"\n            ],\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-09 05:41:54\"\n    },\n    \"astra-color-palettes\": {\n        \"value\": {\n            \"currentPalette\": \"palette_1\",\n            \"palettes\": {\n                \"palette_1\": [\n                    \"#108490\",\n                    \"#ef4922\",\n                    \"#000000\",\n                    \"#373737\",\n                    \"#FFFFFF\",\n                    \"#f0f7f8\",\n                    \"#111111\",\n                    \"#D1D5DB\",\n                    \"#fec010\"\n                ],\n                \"palette_2\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"palette_3\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"palette_4\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presets\": {\n                \"Oak\": [\n                    \"#0067FF\",\n                    \"#005EE9\",\n                    \"#0F172A\",\n                    \"#364151\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#070614\",\n                    \"#D1DAE5\",\n                    \"#222222\"\n                ],\n                \"Viola\": [\n                    \"#6528F7\",\n                    \"#5511F8\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#F2F0FE\",\n                    \"#0D0614\",\n                    \"#D8D8F5\",\n                    \"#222222\"\n                ],\n                \"Cedar\": [\n                    \"#DD183B\",\n                    \"#CC1939\",\n                    \"#0F172A\",\n                    \"#3A3A3A\",\n                    \"#FFFFFF\",\n                    \"#FFEDE6\",\n                    \"#140609\",\n                    \"#FFD1BF\",\n                    \"#222222\"\n                ],\n                \"Willow\": [\n                    \"#54B435\",\n                    \"#379237\",\n                    \"#0F172A\",\n                    \"#2F3B40\",\n                    \"#FFFFFF\",\n                    \"#EDFBE2\",\n                    \"#0C1406\",\n                    \"#D5EAD8\",\n                    \"#222222\"\n                ],\n                \"Lily\": [\n                    \"#DCA54A\",\n                    \"#D09A40\",\n                    \"#0F172A\",\n                    \"#4A4A4A\",\n                    \"#FFFFFF\",\n                    \"#FAF5E5\",\n                    \"#141004\",\n                    \"#F0E6C5\",\n                    \"#222222\"\n                ],\n                \"Rose\": [\n                    \"#FB5FAB\",\n                    \"#EA559D\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FCEEF5\",\n                    \"#140610\",\n                    \"#FAD8E9\",\n                    \"#222222\"\n                ],\n                \"Sage\": [\n                    \"#1B9C85\",\n                    \"#178E79\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#EDF6EE\",\n                    \"#06140C\",\n                    \"#D4F3D7\",\n                    \"#222222\"\n                ],\n                \"Flare\": [\n                    \"#FD9800\",\n                    \"#E98C00\",\n                    \"#0F172A\",\n                    \"#454F5E\",\n                    \"#FFFFFF\",\n                    \"#FEF9E1\",\n                    \"#141006\",\n                    \"#F9F0C8\",\n                    \"#222222\"\n                ],\n                \"Maple\": [\n                    \"#FF6210\",\n                    \"#F15808\",\n                    \"#1C0D0A\",\n                    \"#353535\",\n                    \"#FFFFFF\",\n                    \"#FEF1E4\",\n                    \"#140B06\",\n                    \"#E5D7D1\",\n                    \"#222222\"\n                ],\n                \"Birch\": [\n                    \"#737880\",\n                    \"#65696F\",\n                    \"#151616\",\n                    \"#393C40\",\n                    \"#FFFFFF\",\n                    \"#F6F6F6\",\n                    \"#232529\",\n                    \"#F1F0F0\",\n                    \"#222222\"\n                ],\n                \"Dark\": [\n                    \"#0085FF\",\n                    \"#0177E3\",\n                    \"#FFFFFF\",\n                    \"#E7F6FF\",\n                    \"#212A37\",\n                    \"#0F172A\",\n                    \"#4F5B62\",\n                    \"#070614\",\n                    \"#222222\"\n                ]\n            },\n            \"presetNames\": {\n                \"palette_1\": null,\n                \"palette_2\": \"Oak\",\n                \"palette_3\": \"Viola\",\n                \"palette_4\": \"Dark\"\n            },\n            \"flag\": false\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2026-02-09 05:41:54\"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', '4ea4afae-4e14-4131-9252-2151405e2359', '', '', '2026-02-09 05:41:54', '2026-02-09 05:41:54', '', 0, 'https://mrarif.me/oasis/4ea4afae-4e14-4131-9252-2151405e2359/', 0, 'customize_changeset', '', 0),
(756, 1, '2026-02-09 05:43:15', '2026-02-09 05:43:15', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 05:43:15', '2026-02-09 05:43:15', '', 301, 'https://mrarif.me/oasis/?p=756', 0, 'revision', '', 0),
(757, 1, '2026-02-09 05:43:36', '2026-02-09 05:43:36', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 05:43:36', '2026-02-09 05:43:36', '', 301, 'https://mrarif.me/oasis/?p=757', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(758, 1, '2026-02-09 05:46:35', '2026-02-09 05:46:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:46:35', '2026-02-09 05:46:35', '', 14, 'https://mrarif.me/oasis/?p=758', 0, 'revision', '', 0),
(759, 1, '2026-02-09 05:46:36', '2026-02-09 05:46:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:46:36', '2026-02-09 05:46:36', '', 14, 'https://mrarif.me/oasis/?p=759', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(761, 1, '2026-02-09 05:47:29', '2026-02-09 05:47:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:47:29', '2026-02-09 05:47:29', '', 14, 'https://mrarif.me/oasis/?p=761', 0, 'revision', '', 0),
(762, 1, '2026-02-09 05:47:29', '2026-02-09 05:47:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:47:29', '2026-02-09 05:47:29', '', 14, 'https://mrarif.me/oasis/?p=762', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(763, 1, '2026-02-09 05:47:30', '2026-02-09 05:47:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:47:30', '2026-02-09 05:47:30', '', 14, 'https://mrarif.me/oasis/?p=763', 0, 'revision', '', 0),
(764, 1, '2026-02-09 05:48:20', '2026-02-09 05:48:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:20', '2026-02-09 05:48:20', '', 14, 'https://mrarif.me/oasis/?p=764', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(765, 1, '2026-02-09 05:48:20', '2026-02-09 05:48:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:20', '2026-02-09 05:48:20', '', 14, 'https://mrarif.me/oasis/?p=765', 0, 'revision', '', 0),
(766, 1, '2026-02-09 05:48:21', '2026-02-09 05:48:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:21', '2026-02-09 05:48:21', '', 14, 'https://mrarif.me/oasis/?p=766', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(767, 1, '2026-02-09 05:48:36', '2026-02-09 05:48:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:36', '2026-02-09 05:48:36', '', 14, 'https://mrarif.me/oasis/?p=767', 0, 'revision', '', 0),
(768, 1, '2026-02-09 05:48:36', '2026-02-09 05:48:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img src=\"https://mrarif.me/oasis/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:36', '2026-02-09 05:48:36', '', 14, 'https://mrarif.me/oasis/?p=768', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(776, 1, '2026-02-09 05:56:06', '2026-02-09 05:56:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:06', '2026-02-09 05:56:06', '', 14, 'https://mrarif.me/oasis/?p=776', 0, 'revision', '', 0),
(769, 1, '2026-02-09 05:48:37', '2026-02-09 05:48:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:37', '2026-02-09 05:48:37', '', 14, 'https://mrarif.me/oasis/?p=769', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(770, 1, '2026-02-09 05:48:45', '2026-02-09 05:48:45', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:45', '2026-02-09 05:48:45', '', 14, 'https://mrarif.me/oasis/?p=770', 0, 'revision', '', 0),
(771, 1, '2026-02-09 05:48:45', '2026-02-09 05:48:45', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:45', '2026-02-09 05:48:45', '', 14, 'https://mrarif.me/oasis/?p=771', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(772, 1, '2026-02-09 05:48:45', '2026-02-09 05:48:45', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:48:45', '2026-02-09 05:48:45', '', 14, 'https://mrarif.me/oasis/?p=772', 0, 'revision', '', 0),
(773, 1, '2026-02-09 05:56:00', '2026-02-09 05:56:00', '', 'Oasis Adult Day Care Center ah', '', 'inherit', 'open', 'closed', '', 'oasis-adult-day-care-center-ah', '', '', '2026-02-09 05:56:00', '2026-02-09 05:56:00', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg', 0, 'attachment', 'image/jpeg', 0),
(774, 1, '2026-02-09 05:56:05', '2026-02-09 05:56:05', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:05', '2026-02-09 05:56:05', '', 14, 'https://mrarif.me/oasis/?p=774', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(775, 1, '2026-02-09 05:56:06', '2026-02-09 05:56:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"2000\" height=\"1333\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab.jpg 2000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1024x682.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-768x512.jpg 768w, https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:06', '2026-02-09 05:56:06', '', 14, 'https://mrarif.me/oasis/?p=775', 0, 'revision', '', 0),
(777, 1, '2026-02-09 05:56:11', '2026-02-09 05:56:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:11', '2026-02-09 05:56:11', '', 14, 'https://mrarif.me/oasis/?p=777', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(778, 1, '2026-02-09 05:56:11', '2026-02-09 05:56:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:11', '2026-02-09 05:56:11', '', 14, 'https://mrarif.me/oasis/?p=778', 0, 'revision', '', 0),
(779, 1, '2026-02-09 05:56:11', '2026-02-09 05:56:11', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:11', '2026-02-09 05:56:11', '', 14, 'https://mrarif.me/oasis/?p=779', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(780, 1, '2026-02-09 05:56:37', '2026-02-09 05:56:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:37', '2026-02-09 05:56:37', '', 14, 'https://mrarif.me/oasis/?p=780', 0, 'revision', '', 0),
(781, 1, '2026-02-09 05:56:37', '2026-02-09 05:56:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:37', '2026-02-09 05:56:37', '', 14, 'https://mrarif.me/oasis/?p=781', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(782, 1, '2026-02-09 05:56:37', '2026-02-09 05:56:37', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:56:37', '2026-02-09 05:56:37', '', 14, 'https://mrarif.me/oasis/?p=782', 0, 'revision', '', 0),
(783, 1, '2026-02-09 05:58:09', '2026-02-09 05:58:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:09', '2026-02-09 05:58:09', '', 14, 'https://mrarif.me/oasis/?p=783', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(784, 1, '2026-02-09 05:58:09', '2026-02-09 05:58:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:09', '2026-02-09 05:58:09', '', 14, 'https://mrarif.me/oasis/?p=784', 0, 'revision', '', 0),
(791, 1, '2026-02-09 05:59:17', '2026-02-09 05:59:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		We focus on the whole person, not just daily needs.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:59:17', '2026-02-09 05:59:17', '', 14, 'https://mrarif.me/oasis/?p=791', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(785, 1, '2026-02-09 05:58:09', '2026-02-09 05:58:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:09', '2026-02-09 05:58:09', '', 14, 'https://mrarif.me/oasis/?p=785', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(786, 1, '2026-02-09 05:58:40', '2026-02-09 05:58:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:40', '2026-02-09 05:58:40', '', 14, 'https://mrarif.me/oasis/?p=786', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(787, 1, '2026-02-09 05:58:40', '2026-02-09 05:58:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:40', '2026-02-09 05:58:40', '', 14, 'https://mrarif.me/oasis/?p=787', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(788, 1, '2026-02-09 05:58:40', '2026-02-09 05:58:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:58:40', '2026-02-09 05:58:40', '', 14, 'https://mrarif.me/oasis/?p=788', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(789, 1, '2026-02-09 05:59:17', '2026-02-09 05:59:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:59:17', '2026-02-09 05:59:17', '', 14, 'https://mrarif.me/oasis/?p=789', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(790, 1, '2026-02-09 05:59:17', '2026-02-09 05:59:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 05:59:17', '2026-02-09 05:59:17', '', 14, 'https://mrarif.me/oasis/?p=790', 0, 'revision', '', 0),
(792, 1, '2026-02-09 06:11:39', '2026-02-09 06:11:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		We focus on the whole person, not just daily needs.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:11:39', '2026-02-09 06:11:39', '', 14, 'https://mrarif.me/oasis/?p=792', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(793, 1, '2026-02-09 06:11:39', '2026-02-09 06:11:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		We focus on the whole person, not just daily needs.', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:11:39', '2026-02-09 06:11:39', '', 14, 'https://mrarif.me/oasis/?p=793', 0, 'revision', '', 0),
(794, 1, '2026-02-09 06:11:39', '2026-02-09 06:11:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:11:39', '2026-02-09 06:11:39', '', 14, 'https://mrarif.me/oasis/?p=794', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(795, 1, '2026-02-09 06:12:15', '2026-02-09 06:12:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:12:15', '2026-02-09 06:12:15', '', 14, 'https://mrarif.me/oasis/?p=795', 0, 'revision', '', 0),
(796, 1, '2026-02-09 06:12:16', '2026-02-09 06:12:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:12:16', '2026-02-09 06:12:16', '', 14, 'https://mrarif.me/oasis/?p=796', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(797, 1, '2026-02-09 06:12:16', '2026-02-09 06:12:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:12:16', '2026-02-09 06:12:16', '', 14, 'https://mrarif.me/oasis/?p=797', 0, 'revision', '', 0),
(798, 1, '2026-02-09 06:19:57', '2026-02-09 06:19:57', '', 'Our Approach to Care a', '', 'inherit', 'open', 'closed', '', 'our-approach-to-care-a', '', '', '2026-02-09 06:19:57', '2026-02-09 06:19:57', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(799, 1, '2026-02-09 06:20:01', '2026-02-09 06:20:01', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:20:01', '2026-02-09 06:20:01', '', 14, 'https://mrarif.me/oasis/?p=799', 0, 'revision', '', 0),
(800, 1, '2026-02-09 06:20:02', '2026-02-09 06:20:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:20:02', '2026-02-09 06:20:02', '', 14, 'https://mrarif.me/oasis/?p=800', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(801, 1, '2026-02-09 06:20:02', '2026-02-09 06:20:02', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:20:02', '2026-02-09 06:20:02', '', 14, 'https://mrarif.me/oasis/?p=801', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(805, 1, '2026-02-09 06:43:47', '2026-02-09 06:43:47', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:43:47', '2026-02-09 06:43:47', '', 14, 'https://mrarif.me/oasis/?p=805', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(803, 1, '2026-02-09 06:43:46', '2026-02-09 06:43:46', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:43:46', '2026-02-09 06:43:46', '', 14, 'https://mrarif.me/oasis/?p=803', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(804, 1, '2026-02-09 06:43:47', '2026-02-09 06:43:47', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:43:47', '2026-02-09 06:43:47', '', 14, 'https://mrarif.me/oasis/?p=804', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(806, 1, '2026-02-09 06:45:19', '2026-02-09 06:45:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:45:19', '2026-02-09 06:45:19', '', 14, 'https://mrarif.me/oasis/?p=806', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(807, 1, '2026-02-09 06:45:19', '2026-02-09 06:45:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:45:19', '2026-02-09 06:45:19', '', 14, 'https://mrarif.me/oasis/?p=807', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(808, 1, '2026-02-09 06:45:20', '2026-02-09 06:45:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:45:20', '2026-02-09 06:45:20', '', 14, 'https://mrarif.me/oasis/?p=808', 0, 'revision', '', 0),
(809, 1, '2026-02-09 06:56:13', '2026-02-09 06:56:13', '', 'Our Team afm', '', 'inherit', 'open', 'closed', '', 'our-team-afm', '', '', '2026-02-09 06:56:13', '2026-02-09 06:56:13', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(810, 1, '2026-02-09 06:56:35', '2026-02-09 06:56:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:56:35', '2026-02-09 06:56:35', '', 14, 'https://mrarif.me/oasis/?p=810', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(811, 1, '2026-02-09 06:56:35', '2026-02-09 06:56:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:56:35', '2026-02-09 06:56:35', '', 14, 'https://mrarif.me/oasis/?p=811', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(812, 1, '2026-02-09 06:56:35', '2026-02-09 06:56:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 06:56:35', '2026-02-09 06:56:35', '', 14, 'https://mrarif.me/oasis/?p=812', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(813, 1, '2026-02-09 07:00:56', '2026-02-09 07:00:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:00:56', '2026-02-09 07:00:56', '', 14, 'https://mrarif.me/oasis/?p=813', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(814, 1, '2026-02-09 07:00:56', '2026-02-09 07:00:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:00:56', '2026-02-09 07:00:56', '', 14, 'https://mrarif.me/oasis/?p=814', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(815, 1, '2026-02-09 07:00:57', '2026-02-09 07:00:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:00:57', '2026-02-09 07:00:57', '', 14, 'https://mrarif.me/oasis/?p=815', 0, 'revision', '', 0),
(816, 1, '2026-02-09 07:03:11', '2026-02-09 07:03:11', '', 'clock_16087624', '', 'inherit', 'open', 'closed', '', 'clock_16087624', '', '', '2026-02-09 07:03:11', '2026-02-09 07:03:11', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/clock_16087624.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(821, 1, '2026-02-09 07:08:20', '2026-02-09 07:08:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:20', '2026-02-09 07:08:20', '', 14, 'https://mrarif.me/oasis/?p=821', 0, 'revision', '', 0),
(818, 1, '2026-02-09 07:07:44', '2026-02-09 07:07:44', '', 'truck_10044945', '', 'inherit', 'open', 'closed', '', 'truck_10044945', '', '', '2026-02-09 07:07:44', '2026-02-09 07:07:44', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/truck_10044945.svg', 0, 'attachment', 'image/svg+xml', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(819, 1, '2026-02-09 07:08:19', '2026-02-09 07:08:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:19', '2026-02-09 07:08:19', '', 14, 'https://mrarif.me/oasis/?p=819', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(820, 1, '2026-02-09 07:08:19', '2026-02-09 07:08:19', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:19', '2026-02-09 07:08:19', '', 14, 'https://mrarif.me/oasis/?p=820', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(822, 1, '2026-02-09 07:08:56', '2026-02-09 07:08:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:56', '2026-02-09 07:08:56', '', 14, 'https://mrarif.me/oasis/?p=822', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(823, 1, '2026-02-09 07:08:56', '2026-02-09 07:08:56', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:56', '2026-02-09 07:08:56', '', 14, 'https://mrarif.me/oasis/?p=823', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(824, 1, '2026-02-09 07:08:57', '2026-02-09 07:08:57', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:08:57', '2026-02-09 07:08:57', '', 14, 'https://mrarif.me/oasis/?p=824', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(825, 1, '2026-02-09 07:10:35', '2026-02-09 07:10:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:10:35', '2026-02-09 07:10:35', '', 14, 'https://mrarif.me/oasis/?p=825', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(826, 1, '2026-02-09 07:10:35', '2026-02-09 07:10:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:10:35', '2026-02-09 07:10:35', '', 14, 'https://mrarif.me/oasis/?p=826', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(827, 1, '2026-02-09 07:10:36', '2026-02-09 07:10:36', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:10:36', '2026-02-09 07:10:36', '', 14, 'https://mrarif.me/oasis/?p=827', 0, 'revision', '', 0),
(828, 1, '2026-02-09 07:12:38', '2026-02-09 07:12:38', '', 'Why Families Choose Oasis av', '', 'inherit', 'open', 'closed', '', 'why-families-choose-oasis-av', '', '', '2026-02-09 07:12:38', '2026-02-09 07:12:38', '', 14, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(829, 1, '2026-02-09 07:12:48', '2026-02-09 07:12:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:12:48', '2026-02-09 07:12:48', '', 14, 'https://mrarif.me/oasis/?p=829', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(830, 1, '2026-02-09 07:12:48', '2026-02-09 07:12:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:12:48', '2026-02-09 07:12:48', '', 14, 'https://mrarif.me/oasis/?p=830', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(831, 1, '2026-02-09 07:12:48', '2026-02-09 07:12:48', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:12:48', '2026-02-09 07:12:48', '', 14, 'https://mrarif.me/oasis/?p=831', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(832, 1, '2026-02-09 07:28:27', '2026-02-09 07:28:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:28:27', '2026-02-09 07:28:27', '', 14, 'https://mrarif.me/oasis/?p=832', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(833, 1, '2026-02-09 07:28:27', '2026-02-09 07:28:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:28:27', '2026-02-09 07:28:27', '', 14, 'https://mrarif.me/oasis/?p=833', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(834, 1, '2026-02-09 07:28:28', '2026-02-09 07:28:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 07:28:28', '2026-02-09 07:28:28', '', 14, 'https://mrarif.me/oasis/?p=834', 0, 'revision', '', 0),
(835, 1, '2026-02-09 07:35:45', '2026-02-09 07:35:45', '', 'care giver team a', '', 'inherit', 'open', 'closed', '', 'care-giver-team-a', '', '', '2026-02-09 07:35:45', '2026-02-09 07:35:45', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(836, 1, '2026-02-09 07:36:26', '2026-02-09 07:36:26', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:26', '2026-02-09 07:36:26', '', 12, 'https://mrarif.me/oasis/?p=836', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(837, 1, '2026-02-09 07:36:26', '2026-02-09 07:36:26', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:26', '2026-02-09 07:36:26', '', 12, 'https://mrarif.me/oasis/?p=837', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(838, 1, '2026-02-09 07:36:27', '2026-02-09 07:36:27', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:27', '2026-02-09 07:36:27', '', 12, 'https://mrarif.me/oasis/?p=838', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(839, 1, '2026-02-09 07:36:47', '2026-02-09 07:36:47', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:47', '2026-02-09 07:36:47', '', 12, 'https://mrarif.me/oasis/?p=839', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(840, 1, '2026-02-09 07:36:47', '2026-02-09 07:36:47', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:47', '2026-02-09 07:36:47', '', 12, 'https://mrarif.me/oasis/?p=840', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(841, 1, '2026-02-09 07:36:48', '2026-02-09 07:36:48', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 07:36:48', '2026-02-09 07:36:48', '', 12, 'https://mrarif.me/oasis/?p=841', 0, 'revision', '', 0),
(842, 1, '2026-02-09 07:38:24', '2026-02-09 07:38:24', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-09 07:38:24', '2026-02-09 07:38:24', '', 20, 'https://mrarif.me/oasis/?p=842', 0, 'revision', '', 0),
(843, 1, '2026-02-09 07:38:24', '2026-02-09 07:38:24', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-abc-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-09 07:38:24', '2026-02-09 07:38:24', '', 20, 'https://mrarif.me/oasis/?p=843', 0, 'revision', '', 0),
(1060, 1, '2026-02-14 08:14:07', '2026-02-14 08:14:07', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-14 08:14:07', '2026-02-14 08:14:07', '', 20, 'https://mrarif.me/oasis/?p=1060', 0, 'revision', '', 0),
(844, 1, '2026-02-09 07:38:24', '2026-02-09 07:38:24', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-09 07:38:24', '2026-02-09 07:38:24', '', 20, 'https://mrarif.me/oasis/?p=844', 0, 'revision', '', 0),
(845, 1, '2026-02-09 07:41:39', '2026-02-09 07:41:39', '', 'Careers ab', '', 'inherit', 'open', 'closed', '', 'careers-ab', '', '', '2026-02-09 07:41:39', '2026-02-09 07:41:39', '', 301, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg', 0, 'attachment', 'image/jpeg', 0),
(846, 1, '2026-02-09 07:41:50', '2026-02-09 07:41:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"459\" height=\"190\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a.png 459w, https://mrarif.me/oasis/wp-content/uploads/2026/02/oasis-logo-a-300x124.png 300w\" sizes=\"(max-width: 459px) 100vw, 459px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 07:41:50', '2026-02-09 07:41:50', '', 301, 'https://mrarif.me/oasis/?p=846', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(847, 1, '2026-02-09 07:43:52', '2026-02-09 07:43:52', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:43:52', '2026-02-09 07:43:52', '', 24, 'https://mrarif.me/oasis/?p=847', 0, 'revision', '', 0),
(848, 1, '2026-02-09 07:43:52', '2026-02-09 07:43:52', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"848\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-300x254.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-aav-768x651.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:43:52', '2026-02-09 07:43:52', '', 24, 'https://mrarif.me/oasis/?p=848', 0, 'revision', '', 0),
(849, 1, '2026-02-09 07:43:53', '2026-02-09 07:43:53', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:43:53', '2026-02-09 07:43:53', '', 24, 'https://mrarif.me/oasis/?p=849', 0, 'revision', '', 0),
(850, 1, '2026-02-09 07:44:40', '2026-02-09 07:44:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:44:40', '2026-02-09 07:44:40', '', 24, 'https://mrarif.me/oasis/?p=850', 0, 'revision', '', 0),
(851, 1, '2026-02-09 07:44:40', '2026-02-09 07:44:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:44:40', '2026-02-09 07:44:40', '', 24, 'https://mrarif.me/oasis/?p=851', 0, 'revision', '', 0),
(852, 1, '2026-02-09 07:44:41', '2026-02-09 07:44:41', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:44:41', '2026-02-09 07:44:41', '', 24, 'https://mrarif.me/oasis/?p=852', 0, 'revision', '', 0),
(853, 1, '2026-02-09 07:48:42', '2026-02-09 07:48:42', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-09 07:48:42', '2026-02-09 07:48:42', '', 291, 'https://mrarif.me/oasis/?p=853', 0, 'revision', '', 0),
(857, 1, '2026-02-09 07:56:29', '2026-02-09 07:56:29', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:56:29', '2026-02-09 07:56:29', '', 24, 'https://mrarif.me/oasis/?p=857', 0, 'revision', '', 0),
(855, 1, '2026-02-09 07:56:28', '2026-02-09 07:56:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:56:28', '2026-02-09 07:56:28', '', 24, 'https://mrarif.me/oasis/?p=855', 0, 'revision', '', 0),
(856, 1, '2026-02-09 07:56:28', '2026-02-09 07:56:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 07:56:28', '2026-02-09 07:56:28', '', 24, 'https://mrarif.me/oasis/?p=856', 0, 'revision', '', 0),
(858, 1, '2026-02-09 07:59:55', '2026-02-09 07:59:55', '', 'Work Where Your Compassion Matters ag', '', 'inherit', 'open', 'closed', '', 'work-where-your-compassion-matters-ag', '', '', '2026-02-09 07:59:55', '2026-02-09 07:59:55', '', 24, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg', 0, 'attachment', 'image/jpeg', 0),
(859, 1, '2026-02-09 08:00:12', '2026-02-09 08:00:12', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:00:12', '2026-02-09 08:00:12', '', 24, 'https://mrarif.me/oasis/?p=859', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(860, 1, '2026-02-09 08:00:12', '2026-02-09 08:00:12', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:00:12', '2026-02-09 08:00:12', '', 24, 'https://mrarif.me/oasis/?p=860', 0, 'revision', '', 0),
(861, 1, '2026-02-09 08:00:13', '2026-02-09 08:00:13', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:00:13', '2026-02-09 08:00:13', '', 24, 'https://mrarif.me/oasis/?p=861', 0, 'revision', '', 0),
(862, 1, '2026-02-09 08:01:39', '2026-02-09 08:01:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:01:39', '2026-02-09 08:01:39', '', 24, 'https://mrarif.me/oasis/?p=862', 0, 'revision', '', 0),
(863, 1, '2026-02-09 08:01:39', '2026-02-09 08:01:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:01:39', '2026-02-09 08:01:39', '', 24, 'https://mrarif.me/oasis/?p=863', 0, 'revision', '', 0),
(864, 1, '2026-02-09 08:01:39', '2026-02-09 08:01:39', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:01:39', '2026-02-09 08:01:39', '', 24, 'https://mrarif.me/oasis/?p=864', 0, 'revision', '', 0),
(865, 1, '2026-02-09 08:03:26', '2026-02-09 08:03:26', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:03:26', '2026-02-09 08:03:26', '', 24, 'https://mrarif.me/oasis/?p=865', 0, 'revision', '', 0),
(866, 1, '2026-02-09 08:03:26', '2026-02-09 08:03:26', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>			<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:03:26', '2026-02-09 08:03:26', '', 24, 'https://mrarif.me/oasis/?p=866', 0, 'revision', '', 0),
(874, 1, '2026-02-09 08:14:59', '2026-02-09 08:14:59', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:59', '2026-02-09 08:14:59', '', 24, 'https://mrarif.me/oasis/?p=874', 0, 'revision', '', 0),
(871, 1, '2026-02-09 08:14:40', '2026-02-09 08:14:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Family-focused, supportive workplace</li>\n 	<li>Meaningful work that impacts lives daily</li>\n 	<li>Ongoing training and growth opportunities</li>\n 	<li>Stable daytime hours (no overnight shifts)</li>\n 	<li>Positive, team-oriented culture</li>\n</ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\">\n 	<li>Adult Day Care Caregivers</li>\n 	<li>Activity Coordinators</li>\n 	<li>Drivers (Transportation Services)</li>\n 	<li>Program Assistants</li>\n 	<li>Administrative &amp; Support Staff</li>\n</ul>\nExperience in adult care, senior services, or healthcare is a plus — but compassion and reliability\nmatter most.										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Kind, patient, and respectful individuals</li>\n 	<li>Strong communication skills</li>\n 	<li>Dependability and professionalism</li>\n 	<li>Commitment to participant safety and dignity</li>\n 	<li>Willingness to learn and grow</li>\n</ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Competitive pay</li>\n 	<li>Training and onboarding support</li>\n 	<li>Opportunities for advancement</li>\n 	<li>Positive work-life balance</li>\n</ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:40', '2026-02-09 08:14:40', '', 24, 'https://mrarif.me/oasis/?p=871', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(867, 1, '2026-02-09 08:03:27', '2026-02-09 08:03:27', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 1												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 2												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 3												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"></path></svg>				\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"></path></svg>				\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:03:27', '2026-02-09 08:03:27', '', 24, 'https://mrarif.me/oasis/?p=867', 0, 'revision', '', 0),
(872, 1, '2026-02-09 08:14:59', '2026-02-09 08:14:59', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Family-focused, supportive workplace</li>\n 	<li>Meaningful work that impacts lives daily</li>\n 	<li>Ongoing training and growth opportunities</li>\n 	<li>Stable daytime hours (no overnight shifts)</li>\n 	<li>Positive, team-oriented culture</li>\n</ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\">\n 	<li>Adult Day Care Caregivers</li>\n 	<li>Activity Coordinators</li>\n 	<li>Drivers (Transportation Services)</li>\n 	<li>Program Assistants</li>\n 	<li>Administrative &amp; Support Staff</li>\n</ul>\nExperience in adult care, senior services, or healthcare is a plus — but compassion and reliability\nmatter most.										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Kind, patient, and respectful individuals</li>\n 	<li>Strong communication skills</li>\n 	<li>Dependability and professionalism</li>\n 	<li>Commitment to participant safety and dignity</li>\n 	<li>Willingness to learn and grow</li>\n</ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Competitive pay</li>\n 	<li>Training and onboarding support</li>\n 	<li>Opportunities for advancement</li>\n 	<li>Positive work-life balance</li>\n</ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:59', '2026-02-09 08:14:59', '', 24, 'https://mrarif.me/oasis/?p=872', 0, 'revision', '', 0),
(869, 1, '2026-02-09 08:14:40', '2026-02-09 08:14:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 1												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 2												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 3												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"></path></svg>				\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"></path></svg>				\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:40', '2026-02-09 08:14:40', '', 24, 'https://mrarif.me/oasis/?p=869', 0, 'revision', '', 0),
(870, 1, '2026-02-09 08:14:40', '2026-02-09 08:14:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 1												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 2												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n									<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z\"></path></svg>							\n												<h4>\n													Info Box 3												</h4>\n																						<h5>\n												Subtitle											</h5>\n											Enter info box description										\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"></path></svg>				\n					<svg aria-hidden=\"true\" viewBox=\"0 0 256 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"></path></svg>				\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:40', '2026-02-09 08:14:40', '', 24, 'https://mrarif.me/oasis/?p=870', 0, 'revision', '', 0),
(873, 1, '2026-02-09 08:14:59', '2026-02-09 08:14:59', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Family-focused, supportive workplace</li>\n 	<li>Meaningful work that impacts lives daily</li>\n 	<li>Ongoing training and growth opportunities</li>\n 	<li>Stable daytime hours (no overnight shifts)</li>\n 	<li>Positive, team-oriented culture</li>\n</ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\">\n 	<li>Adult Day Care Caregivers</li>\n 	<li>Activity Coordinators</li>\n 	<li>Drivers (Transportation Services)</li>\n 	<li>Program Assistants</li>\n 	<li>Administrative &amp; Support Staff</li>\n</ul>\nExperience in adult care, senior services, or healthcare is a plus — but compassion and reliability\nmatter most.										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Kind, patient, and respectful individuals</li>\n 	<li>Strong communication skills</li>\n 	<li>Dependability and professionalism</li>\n 	<li>Commitment to participant safety and dignity</li>\n 	<li>Willingness to learn and grow</li>\n</ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\">\n 	<li>Competitive pay</li>\n 	<li>Training and onboarding support</li>\n 	<li>Opportunities for advancement</li>\n 	<li>Positive work-life balance</li>\n</ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:14:59', '2026-02-09 08:14:59', '', 24, 'https://mrarif.me/oasis/?p=873', 0, 'revision', '', 0),
(875, 1, '2026-02-09 08:15:34', '2026-02-09 08:15:34', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:15:34', '2026-02-09 08:15:34', '', 24, 'https://mrarif.me/oasis/?p=875', 0, 'revision', '', 0),
(876, 1, '2026-02-09 08:15:34', '2026-02-09 08:15:34', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:15:34', '2026-02-09 08:15:34', '', 24, 'https://mrarif.me/oasis/?p=876', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(877, 1, '2026-02-09 08:15:34', '2026-02-09 08:15:34', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:15:34', '2026-02-09 08:15:34', '', 24, 'https://mrarif.me/oasis/?p=877', 0, 'revision', '', 0),
(878, 1, '2026-02-09 08:15:59', '2026-02-09 08:15:59', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:15:59', '2026-02-09 08:15:59', '', 24, 'https://mrarif.me/oasis/?p=878', 0, 'revision', '', 0),
(879, 1, '2026-02-09 08:16:00', '2026-02-09 08:16:00', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:00', '2026-02-09 08:16:00', '', 24, 'https://mrarif.me/oasis/?p=879', 0, 'revision', '', 0),
(880, 1, '2026-02-09 08:16:00', '2026-02-09 08:16:00', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:00', '2026-02-09 08:16:00', '', 24, 'https://mrarif.me/oasis/?p=880', 0, 'revision', '', 0),
(881, 1, '2026-02-09 08:16:23', '2026-02-09 08:16:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:23', '2026-02-09 08:16:23', '', 24, 'https://mrarif.me/oasis/?p=881', 0, 'revision', '', 0),
(882, 1, '2026-02-09 08:16:23', '2026-02-09 08:16:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:23', '2026-02-09 08:16:23', '', 24, 'https://mrarif.me/oasis/?p=882', 0, 'revision', '', 0),
(883, 1, '2026-02-09 08:16:23', '2026-02-09 08:16:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:23', '2026-02-09 08:16:23', '', 24, 'https://mrarif.me/oasis/?p=883', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(884, 1, '2026-02-09 08:16:47', '2026-02-09 08:16:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:47', '2026-02-09 08:16:47', '', 24, 'https://mrarif.me/oasis/?p=884', 0, 'revision', '', 0),
(885, 1, '2026-02-09 08:16:47', '2026-02-09 08:16:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:47', '2026-02-09 08:16:47', '', 24, 'https://mrarif.me/oasis/?p=885', 0, 'revision', '', 0),
(886, 1, '2026-02-09 08:16:47', '2026-02-09 08:16:47', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:16:47', '2026-02-09 08:16:47', '', 24, 'https://mrarif.me/oasis/?p=886', 0, 'revision', '', 0),
(887, 1, '2026-02-09 08:22:42', '2026-02-09 08:22:42', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:22:42', '2026-02-09 08:22:42', '', 24, 'https://mrarif.me/oasis/?p=887', 0, 'revision', '', 0),
(888, 1, '2026-02-09 08:22:42', '2026-02-09 08:22:42', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Careers Application</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:22:42', '2026-02-09 08:22:42', '', 24, 'https://mrarif.me/oasis/?p=888', 0, 'revision', '', 0),
(889, 1, '2026-02-09 08:22:42', '2026-02-09 08:22:42', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h4>Interested in joining our team?</h4>					<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:22:42', '2026-02-09 08:22:42', '', 24, 'https://mrarif.me/oasis/?p=889', 0, 'revision', '', 0),
(899, 1, '2026-02-09 08:28:51', '2026-02-09 08:28:51', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:51', '2026-02-09 08:28:51', '', 24, 'https://mrarif.me/oasis/?p=899', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(896, 1, '2026-02-09 08:28:41', '2026-02-09 08:28:41', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:41', '2026-02-09 08:28:41', '', 24, 'https://mrarif.me/oasis/?p=896', 0, 'revision', '', 0),
(893, 1, '2026-02-09 08:28:28', '2026-02-09 08:28:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:28', '2026-02-09 08:28:28', '', 24, 'https://mrarif.me/oasis/?p=893', 0, 'revision', '', 0),
(891, 1, '2026-02-09 08:28:28', '2026-02-09 08:28:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h4>Interested in joining our team?</h4>					<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:28', '2026-02-09 08:28:28', '', 24, 'https://mrarif.me/oasis/?p=891', 0, 'revision', '', 0),
(892, 1, '2026-02-09 08:28:28', '2026-02-09 08:28:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h4>Interested in joining our team?</h4>					<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:28', '2026-02-09 08:28:28', '', 24, 'https://mrarif.me/oasis/?p=892', 0, 'revision', '', 0),
(894, 1, '2026-02-09 08:28:40', '2026-02-09 08:28:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:40', '2026-02-09 08:28:40', '', 24, 'https://mrarif.me/oasis/?p=894', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(895, 1, '2026-02-09 08:28:40', '2026-02-09 08:28:40', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:40', '2026-02-09 08:28:40', '', 24, 'https://mrarif.me/oasis/?p=895', 0, 'revision', '', 0),
(897, 1, '2026-02-09 08:28:51', '2026-02-09 08:28:51', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:51', '2026-02-09 08:28:51', '', 24, 'https://mrarif.me/oasis/?p=897', 0, 'revision', '', 0),
(898, 1, '2026-02-09 08:28:51', '2026-02-09 08:28:51', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h4>Interested in joining our team?</h4>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n							<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:28:51', '2026-02-09 08:28:51', '', 24, 'https://mrarif.me/oasis/?p=898', 0, 'revision', '', 0),
(900, 1, '2026-02-09 08:30:25', '2026-02-09 08:30:25', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:30:25', '2026-02-09 08:30:25', '', 24, 'https://mrarif.me/oasis/?p=900', 0, 'revision', '', 0),
(901, 1, '2026-02-09 08:30:25', '2026-02-09 08:30:25', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n												<a href=\"#\">\n									Join Our Team\n					</a>\n									<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:30:25', '2026-02-09 08:30:25', '', 24, 'https://mrarif.me/oasis/?p=901', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(902, 1, '2026-02-09 08:30:25', '2026-02-09 08:30:25', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:30:25', '2026-02-09 08:30:25', '', 24, 'https://mrarif.me/oasis/?p=902', 0, 'revision', '', 0),
(906, 1, '2026-02-09 08:38:22', '2026-02-09 08:38:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:38:22', '2026-02-09 08:38:22', '', 24, 'https://mrarif.me/oasis/?p=906', 0, 'revision', '', 0),
(904, 1, '2026-02-09 08:38:22', '2026-02-09 08:38:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:38:22', '2026-02-09 08:38:22', '', 24, 'https://mrarif.me/oasis/?p=904', 0, 'revision', '', 0),
(905, 1, '2026-02-09 08:38:22', '2026-02-09 08:38:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>How to Apply</h2>', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:38:22', '2026-02-09 08:38:22', '', 24, 'https://mrarif.me/oasis/?p=905', 0, 'revision', '', 0),
(907, 1, '2026-02-09 08:39:13', '2026-02-09 08:39:13', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:13', '2026-02-09 08:39:13', '', 24, 'https://mrarif.me/oasis/?p=907', 0, 'revision', '', 0),
(908, 1, '2026-02-09 08:39:13', '2026-02-09 08:39:13', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:13', '2026-02-09 08:39:13', '', 24, 'https://mrarif.me/oasis/?p=908', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(909, 1, '2026-02-09 08:39:13', '2026-02-09 08:39:13', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:13', '2026-02-09 08:39:13', '', 24, 'https://mrarif.me/oasis/?p=909', 0, 'revision', '', 0),
(910, 1, '2026-02-09 08:39:22', '2026-02-09 08:39:22', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:22', '2026-02-09 08:39:22', '', 24, 'https://mrarif.me/oasis/?p=910', 0, 'revision', '', 0),
(911, 1, '2026-02-09 08:39:23', '2026-02-09 08:39:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:23', '2026-02-09 08:39:23', '', 24, 'https://mrarif.me/oasis/?p=911', 0, 'revision', '', 0),
(912, 1, '2026-02-09 08:39:23', '2026-02-09 08:39:23', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:23', '2026-02-09 08:39:23', '', 24, 'https://mrarif.me/oasis/?p=912', 0, 'revision', '', 0),
(913, 1, '2026-02-09 08:39:46', '2026-02-09 08:39:46', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:46', '2026-02-09 08:39:46', '', 24, 'https://mrarif.me/oasis/?p=913', 0, 'revision', '', 0),
(914, 1, '2026-02-09 08:39:46', '2026-02-09 08:39:46', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:46', '2026-02-09 08:39:46', '', 24, 'https://mrarif.me/oasis/?p=914', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(915, 1, '2026-02-09 08:39:46', '2026-02-09 08:39:46', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-09 08:39:46', '2026-02-09 08:39:46', '', 24, 'https://mrarif.me/oasis/?p=915', 0, 'revision', '', 0),
(916, 1, '2026-02-09 08:41:02', '2026-02-09 08:41:02', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-09 08:41:02', '2026-02-09 08:41:02', '', 26, 'https://mrarif.me/oasis/?p=916', 0, 'revision', '', 0),
(917, 1, '2026-02-09 08:41:02', '2026-02-09 08:41:02', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-09 08:41:02', '2026-02-09 08:41:02', '', 26, 'https://mrarif.me/oasis/?p=917', 0, 'revision', '', 0),
(918, 1, '2026-02-09 08:41:03', '2026-02-09 08:41:03', '<h2>Get In Touch With Us</h2>', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '26-revision-v1', '', '', '2026-02-09 08:41:03', '2026-02-09 08:41:03', '', 26, 'https://mrarif.me/oasis/?p=918', 0, 'revision', '', 0),
(919, 1, '2026-02-09 08:44:53', '2026-02-09 08:44:53', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-09 08:44:53', '2026-02-09 08:44:53', '', 611, 'https://mrarif.me/oasis/?p=919', 0, 'revision', '', 0),
(920, 1, '2026-02-09 08:44:53', '2026-02-09 08:44:53', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-09 08:44:53', '2026-02-09 08:44:53', '', 611, 'https://mrarif.me/oasis/?p=920', 0, 'revision', '', 0),
(921, 1, '2026-02-09 08:44:53', '2026-02-09 08:44:53', '<h2>Schedule Your Appointment</h2>', 'Schedule Your Appointment', '', 'inherit', 'closed', 'closed', '', '611-revision-v1', '', '', '2026-02-09 08:44:53', '2026-02-09 08:44:53', '', 611, 'https://mrarif.me/oasis/?p=921', 0, 'revision', '', 0),
(922, 1, '2026-02-09 08:50:10', '2026-02-09 08:50:10', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 08:50:10', '2026-02-09 08:50:10', '', 358, 'https://mrarif.me/oasis/?p=922', 0, 'revision', '', 0),
(923, 1, '2026-02-09 08:50:10', '2026-02-09 08:50:10', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Transportation</h2>		<p>Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. Transportation is available for medical appointments, therapy sessions, pharmacy visits, and other essential errands.</p><p>Our trained staff ensure clients are assisted during transfers and travel comfortably and securely. This service helps reduce missed appointments, relieves family burden, and allows residents to remain engaged with their healthcare and community needs.</p>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 08:50:10', '2026-02-09 08:50:10', '', 358, 'https://mrarif.me/oasis/?p=923', 0, 'revision', '', 0),
(931, 1, '2026-02-09 09:35:10', '2026-02-09 09:35:10', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:35:10', '2026-02-09 09:35:10', '', 358, 'https://mrarif.me/oasis/?p=931', 0, 'revision', '', 0),
(928, 1, '2026-02-09 09:29:22', '2026-02-09 09:29:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:29:22', '2026-02-09 09:29:22', '', 358, 'https://mrarif.me/oasis/?p=928', 0, 'revision', '', 0),
(926, 1, '2026-02-09 09:29:22', '2026-02-09 09:29:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:29:22', '2026-02-09 09:29:22', '', 358, 'https://mrarif.me/oasis/?p=926', 0, 'revision', '', 0),
(927, 1, '2026-02-09 09:29:22', '2026-02-09 09:29:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:29:22', '2026-02-09 09:29:22', '', 358, 'https://mrarif.me/oasis/?p=927', 0, 'revision', '', 0),
(929, 1, '2026-02-09 09:35:09', '2026-02-09 09:35:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:35:09', '2026-02-09 09:35:09', '', 358, 'https://mrarif.me/oasis/?p=929', 0, 'revision', '', 0),
(930, 1, '2026-02-09 09:35:09', '2026-02-09 09:35:09', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:35:09', '2026-02-09 09:35:09', '', 358, 'https://mrarif.me/oasis/?p=930', 0, 'revision', '', 0),
(933, 1, '2026-02-09 09:42:04', '2026-02-09 09:42:04', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:04', '2026-02-09 09:42:04', '', 16, 'https://mrarif.me/oasis/?p=933', 0, 'revision', '', 0),
(934, 1, '2026-02-09 09:42:04', '2026-02-09 09:42:04', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Oasis provides safe and reliable transportation services to support residents’ independence and continuity of care. 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:04', '2026-02-09 09:42:04', '', 16, 'https://mrarif.me/oasis/?p=934', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(936, 1, '2026-02-09 09:42:35', '2026-02-09 09:42:35', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:35', '2026-02-09 09:42:35', '', 16, 'https://mrarif.me/oasis/?p=936', 0, 'revision', '', 0),
(937, 1, '2026-02-09 09:42:35', '2026-02-09 09:42:35', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:35', '2026-02-09 09:42:35', '', 16, 'https://mrarif.me/oasis/?p=937', 0, 'revision', '', 0),
(938, 1, '2026-02-09 09:42:35', '2026-02-09 09:42:35', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 09:42:35', '2026-02-09 09:42:35', '', 16, 'https://mrarif.me/oasis/?p=938', 0, 'revision', '', 0),
(939, 1, '2026-02-09 09:50:34', '2026-02-09 09:50:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:50:34', '2026-02-09 09:50:34', '', 358, 'https://mrarif.me/oasis/?p=939', 0, 'revision', '', 0),
(940, 1, '2026-02-09 09:50:34', '2026-02-09 09:50:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:50:34', '2026-02-09 09:50:34', '', 358, 'https://mrarif.me/oasis/?p=940', 0, 'revision', '', 0),
(941, 1, '2026-02-09 09:50:35', '2026-02-09 09:50:35', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"#\">\n									Click here\n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:50:35', '2026-02-09 09:50:35', '', 358, 'https://mrarif.me/oasis/?p=941', 0, 'revision', '', 0),
(942, 1, '2026-02-09 09:52:28', '2026-02-09 09:52:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"#\">\n									Click here\n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:52:28', '2026-02-09 09:52:28', '', 358, 'https://mrarif.me/oasis/?p=942', 0, 'revision', '', 0),
(943, 1, '2026-02-09 09:52:28', '2026-02-09 09:52:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"#\">\n									Click here\n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:52:28', '2026-02-09 09:52:28', '', 358, 'https://mrarif.me/oasis/?p=943', 0, 'revision', '', 0),
(944, 1, '2026-02-09 09:52:28', '2026-02-09 09:52:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"http://con\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:52:28', '2026-02-09 09:52:28', '', 358, 'https://mrarif.me/oasis/?p=944', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(945, 1, '2026-02-09 09:53:15', '2026-02-09 09:53:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"http://con\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:53:15', '2026-02-09 09:53:15', '', 358, 'https://mrarif.me/oasis/?p=945', 0, 'revision', '', 0),
(946, 1, '2026-02-09 09:53:15', '2026-02-09 09:53:15', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"http://con\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:53:15', '2026-02-09 09:53:15', '', 358, 'https://mrarif.me/oasis/?p=946', 0, 'revision', '', 0),
(947, 1, '2026-02-09 09:53:16', '2026-02-09 09:53:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-09 09:53:16', '2026-02-09 09:53:16', '', 358, 'https://mrarif.me/oasis/?p=947', 0, 'revision', '', 0),
(950, 1, '2026-02-09 10:05:51', '2026-02-09 10:05:51', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:05:51', '2026-02-09 10:05:51', '', 301, 'https://mrarif.me/oasis/?p=950', 0, 'revision', '', 0),
(949, 1, '2026-02-09 10:01:12', '2026-02-09 10:01:12', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:01:12', '2026-02-09 10:01:12', '', 301, 'https://mrarif.me/oasis/?p=949', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(951, 1, '2026-02-09 10:06:35', '2026-02-09 10:06:35', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:06:35', '2026-02-09 10:06:35', '', 301, 'https://mrarif.me/oasis/?p=951', 0, 'revision', '', 0),
(952, 1, '2026-02-09 10:06:44', '2026-02-09 10:06:44', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:06:44', '2026-02-09 10:06:44', '', 301, 'https://mrarif.me/oasis/?p=952', 0, 'revision', '', 0),
(953, 1, '2026-02-09 10:07:07', '2026-02-09 10:07:07', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"tel:XX-XXX-XXX-XXX-XX\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:07:07', '2026-02-09 10:07:07', '', 301, 'https://mrarif.me/oasis/?p=953', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(984, 1, '2026-02-09 10:54:35', '2026-02-09 10:54:35', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:54:35', '2026-02-09 10:54:35', '', 301, 'https://mrarif.me/oasis/?p=984', 0, 'revision', '', 0),
(954, 1, '2026-02-09 10:17:45', '2026-02-09 10:17:45', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:17:45', '2026-02-09 10:17:45', '', 301, 'https://mrarif.me/oasis/?p=954', 0, 'revision', '', 0),
(955, 1, '2026-02-09 10:18:28', '2026-02-09 10:18:28', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-09 10:18:28', '2026-02-09 10:18:28', '', 301, 'https://mrarif.me/oasis/?p=955', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(956, 1, '2026-02-09 10:33:12', '2026-02-09 10:33:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:33:12', '2026-02-09 10:33:12', '', 693, 'https://mrarif.me/oasis/?p=956', 0, 'revision', '', 0),
(957, 1, '2026-02-09 10:33:12', '2026-02-09 10:33:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"#\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:33:12', '2026-02-09 10:33:12', '', 693, 'https://mrarif.me/oasis/?p=957', 0, 'revision', '', 0),
(958, 1, '2026-02-09 10:33:13', '2026-02-09 10:33:13', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"https://mrarif.me/oasis/careers/\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:33:13', '2026-02-09 10:33:13', '', 693, 'https://mrarif.me/oasis/?p=958', 0, 'revision', '', 0),
(959, 1, '2026-02-09 10:41:11', '2026-02-09 10:41:11', '', 'Oasis Home Care aa', '', 'inherit', 'open', 'closed', '', 'oasis-home-care-aa', '', '', '2026-02-09 10:41:11', '2026-02-09 10:41:11', '', 693, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(960, 1, '2026-02-09 10:43:39', '2026-02-09 10:43:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"https://mrarif.me/oasis/careers/\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:43:39', '2026-02-09 10:43:39', '', 693, 'https://mrarif.me/oasis/?p=960', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(961, 1, '2026-02-09 10:43:39', '2026-02-09 10:43:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-ss-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"https://mrarif.me/oasis/careers/\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:43:39', '2026-02-09 10:43:39', '', 693, 'https://mrarif.me/oasis/?p=961', 0, 'revision', '', 0),
(962, 1, '2026-02-09 10:43:39', '2026-02-09 10:43:39', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Home-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Home Care</h2>		<p>Oasis Home Care is a trusted, locally owned and operated home care agency serving clients across Metro Denver.</p><p>Our agency is fully licensed and experienced in providing high-quality services. We accept Private and Medicaid insurances and approved in-home support services for individuals on waivers such as CFC, EBD and IHSS.</p><p>We have an established reputation for reliability, responsiveness, and culturally sensitive care— tailored to each client’s unique preferences and level of need.</p>			<h5>Services Offered</h5>		We are fully qualified to provide several services including:					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										In-Home Support Services (IHSS) \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health Maintenance Activities (HMA)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Homemaker Services\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personal Care. \n									</li>\n						</ul>\n				We also have the staffing capacity to start care quickly and adjust services to align with the\nclient’s evolving needs. 			<h5>Our Approach &amp; Experience </h5>		<p>at Oasis Home Care, we believe in building trust through consistency, communication, and individualized care.</p><p>Our caregivers are highly trained, background checked and supervised by an experienced RN for clients receiving IHSS services.</p><p><strong>We ensure that: </strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Plans of care are developed in collaboration with the client, family, and case management team. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										All services are documented and monitored for compliance and quality. Caregivers receive ongoing training in person-centered care, dignity, respect and multi-lingual.\n									</li>\n						</ul>\n							<h5>Why Choose Oasis Home Care? </h5>		We believe Oasis Home Care is the ideal fit for our client based on: \n					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Geographic Proximity: We are located locally in Broomfield and serve Metro Denver Counties and have caregivers already active in those counties.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experience with the CFC, EBD, CMHS Waivers &amp; IHSS Model. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Rapid Start Up Ability: We can initiate care services quickly upon authorization.\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Proven Track Record: High client satisfaction, strong relationships with our clients and their families, and commitment to local, state and federal laws and regulations compliance. \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Continuity of Care: Low caregiver turnover and consistent assignments help foster long-term trust. \n									</li>\n						</ul>\n							<h2>Make your next career move meaningful</h2>		Join our fun-loving team and bring joy and comfort to seniors and disabled people 								<a href=\"https://mrarif.me/oasis/careers/\">\n									Join Our Team\n					</a>\n									<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>', 'Oasis Home Care', '', 'inherit', 'closed', 'closed', '', '693-revision-v1', '', '', '2026-02-09 10:43:39', '2026-02-09 10:43:39', '', 693, 'https://mrarif.me/oasis/?p=962', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(963, 1, '2026-02-09 10:44:40', '2026-02-09 10:44:40', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 10:44:40', '2026-02-09 10:44:40', '', 12, 'https://mrarif.me/oasis/?p=963', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(964, 1, '2026-02-09 10:44:41', '2026-02-09 10:44:41', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 10:44:41', '2026-02-09 10:44:41', '', 12, 'https://mrarif.me/oasis/?p=964', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(965, 1, '2026-02-09 10:44:41', '2026-02-09 10:44:41', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 10:44:41', '2026-02-09 10:44:41', '', 12, 'https://mrarif.me/oasis/?p=965', 0, 'revision', '', 0),
(966, 1, '2026-02-09 10:45:23', '2026-02-09 10:45:23', '<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'publish', 'closed', 'closed', '', 'locations', '', '', '2026-02-09 10:53:28', '2026-02-09 10:53:28', '', 0, 'https://mrarif.me/oasis/?page_id=966', 0, 'page', '', 0),
(967, 1, '2026-02-09 10:45:23', '2026-02-09 10:45:23', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:45:23', '2026-02-09 10:45:23', '', 966, 'https://mrarif.me/oasis/?p=967', 0, 'revision', '', 0),
(968, 1, '2026-02-14 07:54:02', '2026-02-09 10:46:07', ' ', '', '', 'publish', 'closed', 'closed', '', '968', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=968', 17, 'nav_menu_item', '', 0),
(969, 1, '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 966, 'https://mrarif.me/oasis/?p=969', 0, 'revision', '', 0),
(970, 1, '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 966, 'https://mrarif.me/oasis/?p=970', 0, 'revision', '', 0),
(971, 1, '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:48:48', '2026-02-09 10:48:48', '', 966, 'https://mrarif.me/oasis/?p=971', 0, 'revision', '', 0),
(972, 1, '2026-02-09 10:50:53', '2026-02-09 10:50:53', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:50:53', '2026-02-09 10:50:53', '', 966, 'https://mrarif.me/oasis/?p=972', 0, 'revision', '', 0),
(973, 1, '2026-02-09 10:50:53', '2026-02-09 10:50:53', '', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:50:53', '2026-02-09 10:50:53', '', 966, 'https://mrarif.me/oasis/?p=973', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(974, 1, '2026-02-09 10:50:53', '2026-02-09 10:50:53', '<h2>Our Thornton Location </h2>		<p><strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:50:53', '2026-02-09 10:50:53', '', 966, 'https://mrarif.me/oasis/?p=974', 0, 'revision', '', 0),
(975, 1, '2026-02-09 10:51:21', '2026-02-09 10:51:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 10:51:21', '2026-02-09 10:51:21', '', 14, 'https://mrarif.me/oasis/?p=975', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(976, 1, '2026-02-09 10:51:21', '2026-02-09 10:51:21', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 10:51:21', '2026-02-09 10:51:21', '', 14, 'https://mrarif.me/oasis/?p=976', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(977, 1, '2026-02-09 10:51:22', '2026-02-09 10:51:22', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-09 10:51:22', '2026-02-09 10:51:22', '', 14, 'https://mrarif.me/oasis/?p=977', 0, 'revision', '', 0),
(978, 1, '2026-02-09 10:53:05', '2026-02-09 10:53:05', '<h2>Our Thornton Location </h2>		<p><strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:05', '2026-02-09 10:53:05', '', 966, 'https://mrarif.me/oasis/?p=978', 0, 'revision', '', 0),
(979, 1, '2026-02-09 10:53:05', '2026-02-09 10:53:05', '<h2>Our Thornton Location </h2>		<p><strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.</p>					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:05', '2026-02-09 10:53:05', '', 966, 'https://mrarif.me/oasis/?p=979', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(980, 1, '2026-02-09 10:53:05', '2026-02-09 10:53:05', '<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:05', '2026-02-09 10:53:05', '', 966, 'https://mrarif.me/oasis/?p=980', 0, 'revision', '', 0),
(981, 1, '2026-02-09 10:53:27', '2026-02-09 10:53:27', '<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:27', '2026-02-09 10:53:27', '', 966, 'https://mrarif.me/oasis/?p=981', 0, 'revision', '', 0),
(982, 1, '2026-02-09 10:53:27', '2026-02-09 10:53:27', '<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:27', '2026-02-09 10:53:27', '', 966, 'https://mrarif.me/oasis/?p=982', 0, 'revision', '', 0),
(983, 1, '2026-02-09 10:53:28', '2026-02-09 10:53:28', '<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'Locations', '', 'inherit', 'closed', 'closed', '', '966-revision-v1', '', '', '2026-02-09 10:53:28', '2026-02-09 10:53:28', '', 966, 'https://mrarif.me/oasis/?p=983', 0, 'revision', '', 0),
(985, 1, '2026-02-09 10:56:29', '2026-02-09 10:56:29', '<h2>Coming soon</h2>', 'Medication Administration', '', 'publish', 'closed', 'closed', '', 'medication-administration', '', '', '2026-02-09 11:09:02', '2026-02-09 11:09:02', '', 0, 'https://mrarif.me/oasis/?page_id=985', 0, 'page', '', 0),
(986, 1, '2026-02-09 10:56:29', '2026-02-09 10:56:29', '', 'Medication Administration', '', 'inherit', 'closed', 'closed', '', '985-revision-v1', '', '', '2026-02-09 10:56:29', '2026-02-09 10:56:29', '', 985, 'https://mrarif.me/oasis/?p=986', 0, 'revision', '', 0),
(987, 1, '2026-02-14 07:54:02', '2026-02-09 10:56:47', ' ', '', '', 'publish', 'closed', 'closed', '', '987', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=987', 10, 'nav_menu_item', '', 0),
(988, 1, '2026-02-09 11:00:39', '2026-02-09 11:00:39', '', 'Care Plans and Treatments agv', '', 'inherit', 'open', 'closed', '', 'care-plans-and-treatments-agv', '', '', '2026-02-09 11:00:39', '2026-02-09 11:00:39', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(989, 1, '2026-02-09 11:00:45', '2026-02-09 11:00:45', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:00:45', '2026-02-09 11:00:45', '', 12, 'https://mrarif.me/oasis/?p=989', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(990, 1, '2026-02-09 11:00:45', '2026-02-09 11:00:45', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:00:45', '2026-02-09 11:00:45', '', 12, 'https://mrarif.me/oasis/?p=990', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1016, 1, '2026-02-14 06:05:49', '2026-02-14 06:05:49', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:05:49', '2026-02-14 06:05:49', '', 12, 'https://mrarif.me/oasis/?p=1016', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(991, 1, '2026-02-09 11:00:46', '2026-02-09 11:00:46', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:00:46', '2026-02-09 11:00:46', '', 12, 'https://mrarif.me/oasis/?p=991', 0, 'revision', '', 0),
(992, 1, '2026-02-09 11:01:51', '2026-02-09 11:01:51', '', 'Nursing, Dietary Counseling ag', '', 'inherit', 'open', 'closed', '', 'nursing-dietary-counseling-ag', '', '', '2026-02-09 11:01:51', '2026-02-09 11:01:51', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(993, 1, '2026-02-09 11:01:56', '2026-02-09 11:01:56', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:01:56', '2026-02-09 11:01:56', '', 12, 'https://mrarif.me/oasis/?p=993', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(994, 1, '2026-02-09 11:01:56', '2026-02-09 11:01:56', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:01:56', '2026-02-09 11:01:56', '', 12, 'https://mrarif.me/oasis/?p=994', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(995, 1, '2026-02-09 11:01:57', '2026-02-09 11:01:57', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-09 11:01:57', '2026-02-09 11:01:57', '', 12, 'https://mrarif.me/oasis/?p=995', 0, 'revision', '', 0),
(996, 1, '2026-02-09 11:03:24', '2026-02-09 11:03:24', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:03:24', '2026-02-09 11:03:24', '', 16, 'https://mrarif.me/oasis/?p=996', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(997, 1, '2026-02-09 11:03:24', '2026-02-09 11:03:24', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:03:24', '2026-02-09 11:03:24', '', 16, 'https://mrarif.me/oasis/?p=997', 0, 'revision', '', 0),
(998, 1, '2026-02-09 11:03:25', '2026-02-09 11:03:25', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:03:25', '2026-02-09 11:03:25', '', 16, 'https://mrarif.me/oasis/?p=998', 0, 'revision', '', 0),
(999, 1, '2026-02-09 11:05:16', '2026-02-09 11:05:16', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-09 11:05:16', '2026-02-09 11:05:16', '', 354, 'https://mrarif.me/oasis/?p=999', 0, 'revision', '', 0),
(1000, 1, '2026-02-09 11:05:17', '2026-02-09 11:05:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-09 11:05:17', '2026-02-09 11:05:17', '', 354, 'https://mrarif.me/oasis/?p=1000', 0, 'revision', '', 0),
(1001, 1, '2026-02-09 11:05:17', '2026-02-09 11:05:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Nursing, Dietary Counseling</h2>		<p>At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. Our licensed nursing staff provide routine health oversight, basic clinical support, and coordination with physicians as needed.</p><p>Dietary counseling is tailored to each individual’s medical needs, lifestyle, and preferences. We support special diets related to chronic conditions such as diabetes, hypertension, heart disease, and weight management. Our goal is to ensure residents receive balanced nutrition that supports healing, energy, and long-term well-being.</p>', 'Nursing, Dietary Counseling', '', 'inherit', 'closed', 'closed', '', '354-revision-v1', '', '', '2026-02-09 11:05:17', '2026-02-09 11:05:17', '', 354, 'https://mrarif.me/oasis/?p=1001', 0, 'revision', '', 0),
(1002, 1, '2026-02-09 11:05:28', '2026-02-09 11:05:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-09 11:05:28', '2026-02-09 11:05:28', '', 346, 'https://mrarif.me/oasis/?p=1002', 0, 'revision', '', 0),
(1003, 1, '2026-02-09 11:05:28', '2026-02-09 11:05:28', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-09 11:05:28', '2026-02-09 11:05:28', '', 346, 'https://mrarif.me/oasis/?p=1003', 0, 'revision', '', 0),
(1022, 1, '2026-02-14 06:20:09', '2026-02-14 06:20:09', '<img src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" sizes=\"(max-width: 1000px) 100vw, 1000px\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" alt=\"\" width=\"1000\" height=\"667\" />\r\n<h2>Care Plans &amp; Treatments</h2>\r\nWe develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.', 'Care Plans', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-14 06:20:09', '2026-02-14 06:20:09', '', 346, 'https://mrarif.me/oasis/?p=1022', 0, 'revision', '', 0),
(1004, 1, '2026-02-09 11:05:29', '2026-02-09 11:05:29', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans &amp; Treatments\n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans and Treatments', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-09 11:05:29', '2026-02-09 11:05:29', '', 346, 'https://mrarif.me/oasis/?p=1004', 0, 'revision', '', 0),
(1005, 1, '2026-02-09 11:07:13', '2026-02-09 11:07:13', '', 'caregiver aa', '', 'inherit', 'open', 'closed', '', 'caregiver-aa', '', '', '2026-02-09 11:07:13', '2026-02-09 11:07:13', '', 16, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg', 0, 'attachment', 'image/jpeg', 0),
(1006, 1, '2026-02-09 11:07:17', '2026-02-09 11:07:17', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:07:17', '2026-02-09 11:07:17', '', 16, 'https://mrarif.me/oasis/?p=1006', 0, 'revision', '', 0),
(1007, 1, '2026-02-09 11:07:17', '2026-02-09 11:07:17', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:07:17', '2026-02-09 11:07:17', '', 16, 'https://mrarif.me/oasis/?p=1007', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1008, 1, '2026-02-09 11:07:18', '2026-02-09 11:07:18', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-09 11:07:18', '2026-02-09 11:07:18', '', 16, 'https://mrarif.me/oasis/?p=1008', 0, 'revision', '', 0),
(1009, 1, '2026-02-09 11:09:01', '2026-02-09 11:09:01', '', 'Medication Administration', '', 'inherit', 'closed', 'closed', '', '985-revision-v1', '', '', '2026-02-09 11:09:01', '2026-02-09 11:09:01', '', 985, 'https://mrarif.me/oasis/?p=1009', 0, 'revision', '', 0),
(1010, 1, '2026-02-09 11:09:01', '2026-02-09 11:09:01', '', 'Medication Administration', '', 'inherit', 'closed', 'closed', '', '985-revision-v1', '', '', '2026-02-09 11:09:01', '2026-02-09 11:09:01', '', 985, 'https://mrarif.me/oasis/?p=1010', 0, 'revision', '', 0),
(1011, 1, '2026-02-09 11:09:02', '2026-02-09 11:09:02', '<h2>Coming soon</h2>', 'Medication Administration', '', 'inherit', 'closed', 'closed', '', '985-revision-v1', '', '', '2026-02-09 11:09:02', '2026-02-09 11:09:02', '', 985, 'https://mrarif.me/oasis/?p=1011', 0, 'revision', '', 0),
(1012, 1, '2026-02-09 11:23:18', '2026-02-09 11:23:18', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-09 11:23:18', '2026-02-09 11:23:18', '', 291, 'https://mrarif.me/oasis/?p=1012', 0, 'revision', '', 0),
(1013, 1, '2026-02-09 11:23:36', '2026-02-09 11:23:36', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-09 11:23:36', '2026-02-09 11:23:36', '', 291, 'https://mrarif.me/oasis/?p=1013', 0, 'revision', '', 0),
(1014, 1, '2026-02-09 11:24:15', '2026-02-09 11:24:15', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-09 11:24:15', '2026-02-09 11:24:15', '', 291, 'https://mrarif.me/oasis/?p=1014', 0, 'revision', '', 0),
(1015, 1, '2026-02-09 11:24:20', '2026-02-09 11:24:20', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-09 11:24:20', '2026-02-09 11:24:20', '', 291, 'https://mrarif.me/oasis/?p=1015', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1017, 1, '2026-02-14 06:05:49', '2026-02-14 06:05:49', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:05:49', '2026-02-14 06:05:49', '', 12, 'https://mrarif.me/oasis/?p=1017', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1057, 1, '2026-02-14 08:12:45', '2026-02-14 08:12:45', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 08:12:45', '2026-02-14 08:12:45', '', 12, 'https://mrarif.me/oasis/?p=1057', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1018, 1, '2026-02-14 06:05:49', '2026-02-14 06:05:49', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:05:49', '2026-02-14 06:05:49', '', 12, 'https://mrarif.me/oasis/?p=1018', 0, 'revision', '', 0),
(1019, 1, '2026-02-14 06:06:57', '2026-02-14 06:06:57', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 06:06:57', '2026-02-14 06:06:57', '', 18, 'https://mrarif.me/oasis/?p=1019', 0, 'revision', '', 0),
(1020, 1, '2026-02-14 06:06:57', '2026-02-14 06:06:57', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 06:06:57', '2026-02-14 06:06:57', '', 18, 'https://mrarif.me/oasis/?p=1020', 0, 'revision', '', 0),
(1021, 1, '2026-02-14 06:06:57', '2026-02-14 06:06:57', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 06:06:57', '2026-02-14 06:06:57', '', 18, 'https://mrarif.me/oasis/?p=1021', 0, 'revision', '', 0),
(1023, 1, '2026-02-14 06:44:53', '2026-02-14 06:44:53', '<img src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" sizes=\"(max-width: 1000px) 100vw, 1000px\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" alt=\"\" width=\"1000\" height=\"667\" />\r\n<h2>Care Plans &amp; Treatments</h2>\r\nWe develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.', 'Care Plans', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-14 06:44:53', '2026-02-14 06:44:53', '', 346, 'https://mrarif.me/oasis/?p=1023', 0, 'revision', '', 0),
(1024, 1, '2026-02-14 06:44:53', '2026-02-14 06:44:53', '<img src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" sizes=\"(max-width: 1000px) 100vw, 1000px\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" alt=\"\" width=\"1000\" height=\"667\" />\r\n<h2>Care Plans &amp; Treatments</h2>\r\nWe develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.', 'Care Plans', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-14 06:44:53', '2026-02-14 06:44:53', '', 346, 'https://mrarif.me/oasis/?p=1024', 0, 'revision', '', 0),
(1025, 1, '2026-02-14 06:44:53', '2026-02-14 06:44:53', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Care Plans \n</h2>		<p>We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. Care plans are created in collaboration with clients, families, and healthcare professionals and are regularly reviewed to ensure services remain appropriate and effective.</p>', 'Care Plans', '', 'inherit', 'closed', 'closed', '', '346-revision-v1', '', '', '2026-02-14 06:44:53', '2026-02-14 06:44:53', '', 346, 'https://mrarif.me/oasis/?p=1025', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1026, 1, '2026-02-14 06:46:39', '2026-02-14 06:46:39', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 06:46:39', '2026-02-14 06:46:39', '', 16, 'https://mrarif.me/oasis/?p=1026', 0, 'revision', '', 0),
(1027, 1, '2026-02-14 06:46:39', '2026-02-14 06:46:39', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 06:46:39', '2026-02-14 06:46:39', '', 16, 'https://mrarif.me/oasis/?p=1027', 0, 'revision', '', 0),
(1028, 1, '2026-02-14 06:46:39', '2026-02-14 06:46:39', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 06:46:39', '2026-02-14 06:46:39', '', 16, 'https://mrarif.me/oasis/?p=1028', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1029, 1, '2026-02-14 06:48:45', '2026-02-14 06:48:45', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:48:45', '2026-02-14 06:48:45', '', 12, 'https://mrarif.me/oasis/?p=1029', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1030, 1, '2026-02-14 06:48:46', '2026-02-14 06:48:46', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans-and-treatments/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:48:46', '2026-02-14 06:48:46', '', 12, 'https://mrarif.me/oasis/?p=1030', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1031, 1, '2026-02-14 06:48:46', '2026-02-14 06:48:46', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 06:48:46', '2026-02-14 06:48:46', '', 12, 'https://mrarif.me/oasis/?p=1031', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1032, 1, '2026-02-14 07:14:06', '2026-02-14 07:14:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:06', '2026-02-14 07:14:06', '', 14, 'https://mrarif.me/oasis/?p=1032', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1033, 1, '2026-02-14 07:14:06', '2026-02-14 07:14:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:06', '2026-02-14 07:14:06', '', 14, 'https://mrarif.me/oasis/?p=1033', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1034, 1, '2026-02-14 07:14:06', '2026-02-14 07:14:06', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h2>Oasis Health Care Community</h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:06', '2026-02-14 07:14:06', '', 14, 'https://mrarif.me/oasis/?p=1034', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1035, 1, '2026-02-14 07:14:30', '2026-02-14 07:14:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h2>Oasis Health Care Community</h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:30', '2026-02-14 07:14:30', '', 14, 'https://mrarif.me/oasis/?p=1035', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1036, 1, '2026-02-14 07:14:30', '2026-02-14 07:14:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h2>Oasis Health Care Community</h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		To provide compassionate, high-quality adult day services that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust. 													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:30', '2026-02-14 07:14:30', '', 14, 'https://mrarif.me/oasis/?p=1036', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1037, 1, '2026-02-14 07:14:30', '2026-02-14 07:14:30', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/active-a-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Amenities Provided</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Full-Size Commercial Kitchen\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Dining Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Game Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mini Gym\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										TV and Computer Room\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor Area\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Praying Area\n									</li>\n						</ul>\n							<h2>Benefits</h2>				\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 500 500\"><path clip-rule=\"evenodd\" d=\"m452.387 184.791c-.815 8.56-1.404 17.753-2.009 27.53-2.351 37.307-5.241 83.279-21.618 108.657-9.336 14.484-21.078 23.198-33.564 32.452-7.652 5.676-15.568 11.549-23.539 19.064-9.959 9.386-16.829 19.311-21.513 29.677-4.657 10.305-7.118 20.979-8.285 31.94-.341 3.149-1.822 5.918-4.013 7.889-2.186 1.954-5.081 3.132-8.269 3.132h-73.045v-54.262c0-19.295 10.085-27.949 23.572-39.52 2.455-2.097 4.998-4.283 7.035-6.1l.044-.027 79.497-62.294c.094-.072.198-.148.292-.226l.479-.385c3.149-2.461 7.245-3.584 11.296-3.413 4.019.176 7.905 1.63 10.713 4.316.479.457.875.908 1.217 1.338 1.69 2.147 2.444 4.646 2.307 7.09-.138 2.455-1.189 4.905-3.132 6.931-.462.479-.93.914-1.426 1.299l-56.359 44.161c-2.83 2.208-3.336 6.292-1.123 9.133 2.213 2.824 6.292 3.325 9.133 1.112l56.354-44.161c1.046-.809 1.976-1.657 2.808-2.516 4.178-4.355 6.446-9.738 6.755-15.243.27-4.707-.925-9.463-3.589-13.702 1.8-2.301 3.396-4.668 4.789-7.14 2.296-4.057 4.101-8.417 5.466-13.162l13.014-45.152c.072-.182.121-.38.165-.578l8.577-29.727c.419-1.442 1.398-2.698 2.758-3.611 1.503-1.029 3.501-1.618 5.73-1.618 1.778 0 3.265.16 4.465.556 1.068.358 2.081.969 3.077 1.916.771.721 1.316 1.492 1.629 2.279.284.741.389 1.534.312 2.365zm-290.227 257.208c-2.186-1.971-3.677-4.74-4.013-7.889-1.167-10.96-3.633-21.634-8.291-31.94-4.685-10.366-11.549-20.291-21.508-29.677-7.977-7.514-15.887-13.388-23.539-19.064-12.485-9.254-24.227-17.968-33.569-32.452-16.372-25.378-19.262-71.35-21.613-108.657-.611-9.777-1.195-18.97-2.009-27.53-.083-.831.022-1.624.308-2.367.314-.787.864-1.558 1.63-2.279 1.002-.947 2.015-1.558 3.083-1.916 1.2-.396 2.681-.556 4.464-.556 2.229 0 4.222.589 5.731 1.618 1.354.914 2.34 2.169 2.758 3.611l8.577 29.727c.039.198.094.385.165.578l13.014 45.152c1.365 4.745 3.165 9.105 5.466 13.162 1.393 2.472 2.984 4.839 4.784 7.14-2.659 4.239-3.853 8.995-3.584 13.702.303 5.505 2.576 10.889 6.755 15.243.826.859 1.762 1.707 2.802 2.516l56.36 44.161c2.835 2.213 6.92 1.712 9.127-1.112 2.213-2.841 1.712-6.925-1.118-9.133l-56.36-44.161c-.495-.396-.969-.82-1.426-1.299-1.943-2.026-2.995-4.475-3.132-6.931-.143-2.444.616-4.943 2.301-7.09.341-.429.743-.881 1.222-1.338 2.802-2.686 6.694-4.14 10.707-4.316 4.057-.171 8.147.952 11.296 3.413l.484.385c.094.077.198.154.292.226l79.497 62.294.044.027c2.037 1.817 4.58 4.002 7.035 6.1 13.482 11.571 23.572 20.225 23.572 39.52v54.262h-73.045c-3.186.002-6.087-1.176-8.267-3.13zm-66.709-267.056c-3.529 12.072-6.309 23.98-8.296 35.837l12.689 44.012c1.062 3.683 2.477 7.096 4.294 10.305.897 1.597 1.888 3.127 2.978 4.608 4.14-2.323 8.835-3.595 13.581-3.804 3.567-.16 7.189.292 10.636 1.365 1.167-15.32 2.989-29.545 5.477-42.63 3.055-16.086 7.096-30.459 12.1-43.126 1.365-3.452 1.2-3.028 1.261-3.187 5.643-14.561 9.87-25.494 29.171-27.084 4.233-.352 8.461.066 12.694 1.261 3.986 1.123 7.922 2.923 11.819 5.395 6.721 3.402 13.162 5.588 19.311 6.556 5.967.941 11.748.76 17.341-.539h.017c.898-.27 1.635-.82 2.158-1.525.529-.721.826-1.613.815-2.543-.06-3.886-7.107-7.311-12.733-10.036-.914-.446-1.795-.87-3.292-1.635-13.449-6.914-25.103-12.815-34.94-17.731-12.111-6.061-21.926-10.856-28.851-14.197-.275.005-.556.022-.831.022-7.943 0-15.298-2.499-21.348-6.738-5.527.639-11.445 3.083-17.054 7.382-5.918 4.531-11.412 11.076-15.711 19.686-5.172 13.122-9.642 25.872-13.286 38.346zm50.304-112.995c4.382-4.371 10.421-7.079 17.093-7.079s12.717 2.708 17.082 7.079c4.382 4.377 7.079 10.421 7.079 17.098 0 6.666-2.697 12.705-7.079 17.087-4.365 4.371-10.41 7.074-17.082 7.074s-12.711-2.703-17.093-7.074c-4.365-4.382-7.074-10.421-7.074-17.087 0-6.677 2.709-12.721 7.074-17.098zm104.247 111.442c-1.679 1.332-3.617 2.367-5.758 3.011-.248.077-.501.143-.754.182-7.228 1.679-14.671 1.927-22.312.727-7.685-1.211-15.502-3.843-23.446-7.889-.303-.16-.578-.33-.853-.517-2.824-1.8-5.62-3.088-8.362-3.853-2.697-.765-5.406-1.035-8.103-.809-11.186.925-14.159 8.582-18.106 18.778-.875 2.274-.76 2.026-1.266 3.292-4.734 11.984-8.549 25.565-11.428 40.731-2.742 14.412-4.646 30.299-5.736 47.623l76.959 60.301c.242.165.473.347.699.539 2.714 2.422 4.811 4.222 6.832 5.945 8.896 7.635 16.559 14.219 21.634 22.824 5.07-8.604 12.733-15.188 21.629-22.824 2.021-1.723 4.118-3.523 6.837-5.945.226-.192.451-.374.694-.539l76.965-60.301c-1.09-17.324-2.995-33.211-5.736-47.623-2.885-15.166-6.694-28.747-11.434-40.731-.501-1.266-.391-1.018-1.261-3.292-3.953-10.195-6.92-17.853-18.106-18.778-2.697-.225-5.406.044-8.103.809-2.742.765-5.538 2.053-8.368 3.853-.27.187-.551.358-.853.517-7.938 4.046-15.755 6.678-23.44 7.889-7.646 1.2-15.089.952-22.317-.727-.248-.038-.501-.105-.754-.182-2.141-.643-4.073-1.678-5.753-3.011zm19.24-23.583c-5.626 2.725-12.678 6.149-12.738 10.036-.011.93.286 1.822.82 2.543.523.705 1.261 1.255 2.158 1.525h.017c5.588 1.299 11.368 1.481 17.341.539 6.144-.969 12.59-3.154 19.306-6.556 3.903-2.472 7.833-4.272 11.824-5.395 4.228-1.195 8.461-1.613 12.695-1.261 19.295 1.591 23.528 12.524 29.165 27.084.066.16-.099-.264 1.266 3.187 5.004 12.667 9.045 27.04 12.1 43.126 2.488 13.085 4.31 27.31 5.478 42.63 3.446-1.073 7.068-1.525 10.636-1.365 4.745.209 9.435 1.481 13.581 3.804 1.09-1.481 2.081-3.011 2.973-4.608 1.822-3.209 3.231-6.622 4.294-10.305l12.694-44.012c-1.987-11.858-4.773-23.765-8.296-35.837-3.65-12.474-8.114-25.224-13.283-38.347-4.305-8.61-9.799-15.155-15.717-19.686-5.604-4.299-11.522-6.743-17.054-7.382-6.044 4.239-13.405 6.738-21.343 6.738-.275 0-.556-.017-.837-.022-6.92 3.341-16.741 8.136-28.846 14.197-9.838 4.916-21.491 10.817-34.946 17.731-1.499.766-2.374 1.19-3.288 1.636zm50.827-87.859c4.371-4.371 10.41-7.079 17.087-7.079 6.666 0 12.711 2.708 17.087 7.079 4.371 4.377 7.079 10.421 7.079 17.098 0 6.666-2.708 12.705-7.079 17.087-4.376 4.371-10.421 7.074-17.087 7.074-6.677 0-12.716-2.703-17.087-7.074-4.382-4.382-7.079-10.421-7.079-17.087 0-6.677 2.697-12.721 7.079-17.098zm144.142 115.681c-1.013-2.549-2.631-4.889-4.844-6.975-2.428-2.29-5.004-3.809-7.866-4.767-2.742-.914-5.549-1.272-8.599-1.272-4.833 0-9.358 1.426-13.024 3.909-3.826 2.582-6.667 6.32-7.966 10.812l-1.382 4.795c-1.073-4.255-2.235-8.533-3.485-12.81-3.82-13.085-8.412-26.226-13.674-39.575-.132-.325-.281-.639-.457-.925-5.257-10.542-12.061-18.612-19.443-24.271-4.712-3.6-9.683-6.237-14.659-7.938 3.523-5.681 5.571-12.386 5.571-19.564 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.314-10.911-10.283 0-19.587 4.173-26.325 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 10.272 4.167 19.576 10.905 26.314 2.081 2.081 4.404 3.909 6.92 5.455-4.602 2.263-9.947 4.922-16.096 7.993-9.887 4.943-21.579 10.861-35.045 17.786-.479.242-1.723.842-3.028 1.481-4.531 2.191-9.65 4.679-13.581 8.191-3.936-3.512-9.056-6.001-13.581-8.191-1.305-.639-2.549-1.238-3.033-1.481-13.465-6.925-25.158-12.843-35.045-17.786-6.143-3.072-11.489-5.731-16.096-7.993 2.516-1.547 4.839-3.374 6.92-5.455 6.738-6.738 10.911-16.041 10.911-26.314 0-10.283-4.173-19.592-10.911-26.325-6.738-6.738-16.041-10.911-26.319-10.911-10.272 0-19.581 4.173-26.319 10.911-6.738 6.733-10.905 16.041-10.905 26.325 0 7.178 2.042 13.883 5.571 19.564-4.982 1.701-9.953 4.338-14.66 7.938-7.382 5.659-14.192 13.729-19.449 24.271-.171.286-.319.6-.446.925-5.274 13.349-9.859 26.49-13.685 39.575-1.25 4.277-2.406 8.555-3.479 12.81l-1.387-4.795c-1.294-4.492-4.14-8.23-7.96-10.812-3.666-2.483-8.191-3.909-13.025-3.909-3.055 0-5.857.358-8.599 1.272-2.863.958-5.445 2.477-7.872 4.767-2.208 2.086-3.831 4.426-4.839 6.975-1.035 2.62-1.42 5.433-1.134 8.39.749 7.8 1.332 17.159 1.96 27.112 2.444 38.832 5.461 86.676 23.655 114.888 10.63 16.471 23.303 25.873 36.779 35.865 7.322 5.433 14.886 11.048 22.361 18.089 8.621 8.125 14.55 16.675 18.563 25.554 4.035 8.935 6.176 18.293 7.217 27.96.688 6.485 3.743 12.15 8.252 16.196 4.514 4.068 10.481 6.507 16.983 6.507h159.148c6.501 0 12.463-2.439 16.988-6.507 4.503-4.046 7.558-9.711 8.247-16.196 1.035-9.667 3.176-19.025 7.217-27.96 4.013-8.879 9.942-17.429 18.557-25.554 7.481-7.041 15.045-12.656 22.367-18.089 13.476-9.992 26.148-19.394 36.778-35.865 18.194-28.213 21.205-76.056 23.649-114.888.628-9.953 1.211-19.311 1.96-27.112.284-2.956-.096-5.769-1.131-8.39z\" fill-rule=\"evenodd\"></path></svg>							\n											<p>Providing a safe and engaging environment for seniors to thrive and socialize.</p>										\n									<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" viewBox=\"0 0 512 512\"><path d=\"m438.812 279.037-22.853-91.981c-3.328-13.395-13.32-23.408-25.565-27.404 7.834-6.918 12.789-17.027 12.789-28.276 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 16.397 10.518 30.378 25.158 35.568-1.88 1.592-3.531 3.356-4.93 5.261h-62.515c-4.171-3.76-8.86-6.761-13.888-8.939 10.568-6.693 17.604-18.482 17.604-31.89 0-20.804-16.926-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 13.408 7.036 25.196 17.604 31.889-5.028 2.178-9.716 5.179-13.887 8.939h-53.364c-1.399-1.905-3.049-3.669-4.93-5.261 14.641-5.19 25.158-19.171 25.158-35.568 0-20.804-16.925-37.729-37.729-37.729s-37.729 16.925-37.729 37.729c0 11.249 4.955 21.357 12.789 28.276-12.245 3.996-22.237 14.009-25.565 27.405l-22.853 91.98c-3.047 12.26.255 25.449 8.625 34.931v144.068c0 15.419 12.545 27.964 27.965 27.964s27.965-12.545 27.965-27.964v-142.183c5.101-4.991 8.681-11.234 10.409-18.19l8.295-33.385 3.853 7.501c2.148 4.183 5.497 7.529 9.688 9.683l30.507 17.468v159.106c0 15.419 12.545 27.964 27.965 27.964 9.5 0 17.908-4.761 22.965-12.023 5.054 7.263 13.463 12.024 22.963 12.024 15.42 0 27.965-12.544 27.965-27.964v-153.866l39.658-22.708c4.19-2.154 7.539-5.5 9.688-9.684l3.853-7.501 8.295 33.385c1.728 6.955 5.308 13.199 10.409 18.19v142.183c0 15.419 12.545 27.964 27.965 27.964 15.419 0 27.964-12.545 27.964-27.964v-144.067c8.369-9.481 11.67-22.67 8.625-34.931zm-101.087-147.661c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729c0 12.966-8.947 23.879-20.991 26.897-.878.145-1.757.318-2.636.527-1.339.199-2.708.305-4.102.305-15.29.001-27.729-12.439-27.729-27.729zm-114.03.001c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.439 27.729-27.729 27.729-27.729-12.439-27.729-27.729zm-4.306 50.828c1.306 0 2.559-.511 3.492-1.422 7.715-7.53 17.852-11.677 28.544-11.677 10.691 0 20.829 4.147 28.544 11.678.934.912 2.188 1.422 3.492 1.422h59.328l-10.676 23.966h-34.759c-2.762 0-5 2.239-5 5v46.939l-29.944 17.147c-2.531 1.449-4.677 3.236-6.41 5.272-1.733-2.036-3.879-3.822-6.41-5.272l-39.095-22.387v-41.699c0-2.761-2.238-5-5-5h-25.608l-10.676-23.966h50.178zm108.27 33.967-12.99 29.162-12.314 7.051v-36.213zm-127.164 30.973-3.163-1.811-12.99-29.162h16.153zm-81.677-115.769c0-15.29 12.439-27.729 27.729-27.729s27.729 12.439 27.729 27.729-12.438 27.729-27.729 27.729c-1.394 0-2.763-.106-4.102-.305-.88-.209-1.76-.382-2.64-.527-12.041-3.019-20.987-13.931-20.987-26.897zm55.811 141.227c-2.354-1.193-4.233-3.058-5.434-5.394l-9.939-19.354-16.699-32.516c-1.261-2.457-4.277-3.424-6.731-2.164-2.456 1.262-3.425 4.275-2.163 6.732l15.842 30.846-11.056 44.496c-1.418 5.707-4.523 10.768-8.981 14.637-1.094.949-1.723 2.327-1.723 3.776v144.372c0 9.906-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-146.034c0-1.314-.518-2.575-1.439-3.51-6.996-7.096-9.862-17.458-7.48-27.042l22.853-91.981c3.231-13.008 14.94-21.724 27.778-21.724 1.456 0 2.926.125 4.4.356.856.201 1.722.378 2.6.519 8.242 2.073 14.725 6.822 17.353 12.721l30.983 69.554c.432.97 1.161 1.777 2.083 2.304l53.676 30.736c5.149 2.949 6.323 6.987 6.379 9.926 0 .051-.005.1-.005.151 0 .063.005.125.006.187-.042 4.693-2.765 9.407-6.819 11.767-2.552 1.484-6.694 2.623-11.953-.388l-57.375-32.854c-.076-.04-.15-.081-.226-.119zm117.725 185.433c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-86.846c0-2.761-2.238-5-5-5s-5 2.239-5 5v86.846c0 9.905-8.059 17.964-17.965 17.964s-17.965-8.059-17.965-17.964v-153.38l16.765 9.6c7.225 4.138 15.227 4.268 21.952.353 2.646-1.54 4.94-3.61 6.789-6.022 1.848 2.412 4.143 4.483 6.789 6.023 6.724 3.913 14.726 3.785 21.952-.353l7.613-4.359zm129.271-149.546c-.922.936-1.439 2.197-1.439 3.511v146.035c0 9.906-8.059 17.964-17.964 17.964-9.906 0-17.965-8.059-17.965-17.964v-144.372c0-1.449-.629-2.827-1.723-3.776-4.459-3.87-7.564-8.931-8.981-14.637l-11.056-44.496 15.842-30.846c1.262-2.457.293-5.47-2.163-6.732-2.457-1.262-5.471-.294-6.731 2.164l-16.699 32.516-9.939 19.353c-1.2 2.336-3.079 4.201-5.434 5.394-.076.038-.15.079-.225.121l-57.375 32.854c-5.259 3.012-9.401 1.873-11.953.388-4.055-2.36-6.779-7.074-6.819-11.766 0-.063.006-.125.006-.187 0-.051-.005-.101-.006-.152.056-2.938 1.229-6.977 6.379-9.925l53.677-30.736c.922-.527 1.651-1.334 2.083-2.304l30.983-69.554c2.627-5.899 9.11-10.648 17.351-12.721.914-.147 1.814-.332 2.705-.543 14.436-2.205 28.486 6.941 32.077 21.391l22.853 91.981c2.379 9.582-.488 19.944-7.484 27.039zm-125.864-200.637c.938.938 2.209 1.464 3.535 1.464s2.598-.527 3.535-1.464l33.219-33.219c11.108-11.108 11.108-29.182 0-40.289-5.38-5.381-12.534-8.345-20.145-8.345-6.044 0-11.801 1.869-16.609 5.334-4.809-3.465-10.566-5.334-16.609-5.334-7.61 0-14.765 2.963-20.145 8.345-11.108 11.108-11.108 29.182 0 40.29zm-26.149-66.437c3.492-3.493 8.136-5.416 13.074-5.416s9.582 1.923 13.074 5.415c.938.938 2.209 1.465 3.535 1.465s2.598-.527 3.535-1.465c3.492-3.492 8.136-5.415 13.074-5.415s9.582 1.923 13.074 5.416c7.209 7.208 7.209 18.938 0 26.147l-29.684 29.684-29.684-29.684c-7.207-7.209-7.207-18.939.002-26.147z\"></path></svg>							\n											<p>Offering peace of mind to families with compassionate, professional care.</p>										\n					<h2>Oasis Adult Day Care Center </h2>					<h2>Oasis Health Care Community</h2>					<h5>Our Story </h5>		<p>At <strong>Oasis Community Center,</strong> we believe every adult deserves to feel valued, respected, and connected.</p><p>Our Thornton location was created to be a welcoming place where adults and seniors can spend their day in a safe, engaging, and compassionate environment — while families gain peace of mind. We are more than an adult day program. We are a <strong>community</strong> built on kindness, dignity, and meaningful relationships.</p>			<h5>Our Mission</h5>		<p>To provide compassionate, high-quality Oasis Health Care Community that promote independence, connection, and overall well-being — while supporting families with dependable care they can trust.</p>													<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Approach-to-Care-a-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Approach to Care </h2>		<p>We focus on the whole person, not just daily needs.<br /><strong>At Oasis, we offer:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A warm, family-focused environment\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging daily activities that support cognitive and social well-being\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Health and wellness support, including medication administration, reminders and monitoring\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nutritious meals and structured programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Reliable transportation for added convenience\n									</li>\n						</ul>\n				<p>Every participant is treated with dignity and respect, and our programs are designed to enhance quality of life.</p>			<h2>Our Team </h2>		Our team is made up of compassionate, trained professionals who truly care about the people they serve. From caregivers and activity coordinators to drivers and support staff, every member of the Oasis team shares one goal: to help our participants feel safe, supported, and at home.			<h5>We value:</h5>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Compassion\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Patience\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Professionalism \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Respect for families and participants\n									</li>\n						</ul>\n																	<img width=\"1500\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm.jpg 1500w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-1024x683.jpg 1024w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Our-Team-afm-768x512.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />																<h2>Our Thornton Location </h2>		<strong>Oasis Adult Day Service</strong> – <strong>Thornton</strong> proudly serves families in metro Denver and surrounding areas.					<ul>\n							<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"regular\" viewBox=\"0 0 24 24\"><path d=\"m19.5 0c-1.4 0-2.7.7-3.5 1.8-1.3-.5-2.6-.8-4-.8s-2.7.3-4 .8c-.8-1.1-2.1-1.8-3.5-1.8-2.5 0-4.5 2-4.5 4.5 0 1.4.7 2.7 1.8 3.5-.5 1.3-.8 2.6-.8 4 0 3.3 1.5 6.2 3.7 8.2l-2.5 2.5c-.2.3-.2.8.1 1.1.1.1.3.2.5.2s.4-.1.5-.2l2.6-2.6c1.8 1.1 3.9 1.8 6.1 1.8s4.3-.7 6.1-1.8l2.6 2.6c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1l-2.5-2.5c2.3-2 3.7-5 3.7-8.2 0-1.4-.3-2.7-.8-4 1.2-.8 1.9-2.1 1.9-3.5 0-2.5-2-4.5-4.5-4.5zm-18 4.5c0-1.6 1.3-3 3-3 .8 0 1.6.3 2.1.9-1.8 1-3.2 2.5-4.2 4.2-.6-.5-.9-1.3-.9-2.1zm10.5 17c-5.2 0-9.5-4.3-9.5-9.5s4.3-9.5 9.5-9.5 9.5 4.3 9.5 9.5-4.3 9.5-9.5 9.5zm9.6-14.9c-1-1.8-2.5-3.2-4.2-4.2.6-.6 1.3-.9 2.1-.9 1.6 0 3 1.3 3 3 0 .8-.3 1.6-.9 2.1z\"></path><path d=\"m12.8 11.7v-6.4c0-.4-.3-.8-.8-.8s-.8.3-.8.8v6.7c0 .2.1.4.2.5l4.2 4.2c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.8 0-1.1z\"></path></svg>						\n										Monday–Friday, 8 – 5PM\n									</li>\n								<li>\n							<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_1\" height=\"512\" viewBox=\"0 0 512 512\" width=\"512\"><g><path d=\"m403.5 116.7h-295v147.5h295zm-155.7 131.1h-122.9v-114.7h122.9zm139.3 0h-122.9v-114.7h122.9z\"></path><path d=\"m141.3 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11.1 24.6-24.6 24.6z\"></path><path d=\"m370.7 329.7c-22.6 0-41 18.4-41 41s18.4 41 41 41 41-18.4 41-41-18.4-41-41-41zm0 65.6c-13.6 0-24.6-11-24.6-24.6s11-24.6 24.6-24.6 24.6 11 24.6 24.6-11 24.6-24.6 24.6z\"></path><path d=\"m198.6 403.5h114.7v-65.5h-114.7zm16.4-49.2h82v32.8h-82z\"></path><path d=\"m501.8 264.2v-114.7h-49.2v-12.8c0-42.6-29.3-78.9-71.3-88.2-14.3-3.2-28.8-5.6-43.4-7.6v-14.3c0-13.6-11-24.6-24.6-24.6h-114.7c-13.6 0-24.6 11-24.6 24.6v14.2c-14.5 2.1-29 4.5-43.4 7.6-42 9.3-71.3 45.6-71.3 88.2v12.8h-49.1v114.7h49.2v67.2c0 6.5-3.2 12.5-8.6 16.1-10 6.7-15.9 17.8-15.9 29.8v50.8c0 22.6 18.4 41 41 41h8.2v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h180.3v16.4c0 13.6 11 24.6 24.6 24.6h32.8c13.6 0 24.6-11 24.6-24.6v-16.4h8.2c22.6 0 41-18.4 41-41v-50.8c0-12-6-23.1-15.9-29.8-5.4-3.6-8.6-9.6-8.6-16.1v-67.2h48.7zm-49.2-98.3h32.8v81.9h-32.8zm-262.1-139.3c0-4.5 3.7-8.2 8.2-8.2h114.7c4.5 0 8.2 3.7 8.2 8.2v12c-43.5-4.9-87.6-4.9-131.1 0zm-163.9 221.2v-81.9h32.8v81.9zm122.9 237.6c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm262.2 0c0 4.5-3.7 8.2-8.2 8.2h-32.8c-4.5 0-8.2-3.7-8.2-8.2v-16.4h49.2zm49.1-108.1v50.8c0 13.6-11 24.6-24.6 24.6h-360.5c-13.6 0-24.6-11-24.6-24.6v-50.8c0-6.5 3.2-12.5 8.6-16.1 10-6.7 15.9-17.8 15.9-29.8v-194.8c0-34.9 24.1-64.6 58.5-72.2 39.9-8.8 80.9-13.3 121.8-13.3s81.9 4.5 121.8 13.3c34.4 7.6 58.5 37.3 58.5 72.2v194.7c0 12 6 23.1 15.9 29.8 5.5 3.6 8.7 9.7 8.7 16.2z\"></path></g></svg>						\n										Transportation available \n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Why-Families-Choose-Oasis-av-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Why Families Choose Oasis</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										A welcoming, home-like environment \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Experienced and caring staff \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Engaging and meaningful daily programs \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Clear communication with families\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Optional transportation services \n									</li>\n						</ul>\n							<h2>We’d love to meet you. </h2>		<strong>Schedule a Tour</strong> or <strong>Contact Us </strong>to learn more about Oasis Health Care Community.								<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Contact Us\n					</a>', 'About', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2026-02-14 07:14:30', '2026-02-14 07:14:30', '', 14, 'https://mrarif.me/oasis/?p=1037', 0, 'revision', '', 0),
(1039, 1, '2026-02-14 07:50:40', '2026-02-14 07:50:40', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Adult Day Care</h2>		Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.', 'Adult Day Services', '', 'publish', 'closed', 'closed', '', 'adult-day-services', '', '', '2026-02-15 09:35:45', '2026-02-15 09:35:45', '', 0, 'https://mrarif.me/oasis/?page_id=1039', 0, 'page', '', 0),
(1040, 1, '2026-02-14 07:50:40', '2026-02-14 07:50:40', '', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-14 07:50:40', '2026-02-14 07:50:40', '', 1039, 'https://mrarif.me/oasis/?p=1040', 0, 'revision', '', 0),
(1043, 1, '2026-02-14 07:54:02', '2026-02-14 07:54:02', ' ', '', '', 'publish', 'closed', 'closed', '', '1043', '', '', '2026-02-14 07:54:02', '2026-02-14 07:54:02', '', 0, 'https://mrarif.me/oasis/?p=1043', 12, 'nav_menu_item', '', 0),
(1044, 1, '2026-02-14 07:56:03', '2026-02-14 07:56:03', '', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-14 07:56:03', '2026-02-14 07:56:03', '', 1039, 'https://mrarif.me/oasis/?p=1044', 0, 'revision', '', 0),
(1045, 1, '2026-02-14 07:56:04', '2026-02-14 07:56:04', '', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-14 07:56:04', '2026-02-14 07:56:04', '', 1039, 'https://mrarif.me/oasis/?p=1045', 0, 'revision', '', 0),
(1046, 1, '2026-02-14 07:56:04', '2026-02-14 07:56:04', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Adult Day Care</h2>		Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-14 07:56:04', '2026-02-14 07:56:04', '', 1039, 'https://mrarif.me/oasis/?p=1046', 0, 'revision', '', 0),
(1047, 1, '2026-02-14 07:59:16', '2026-02-14 07:59:16', '', 'Oasis Adult Day Care ah', '', 'inherit', 'open', 'closed', '', 'oasis-adult-day-care-ah', '', '', '2026-02-14 07:59:16', '2026-02-14 07:59:16', '', 358, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg', 0, 'attachment', 'image/jpeg', 0),
(1048, 1, '2026-02-14 07:59:20', '2026-02-14 07:59:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-14 07:59:20', '2026-02-14 07:59:20', '', 358, 'https://mrarif.me/oasis/?p=1048', 0, 'revision', '', 0),
(1049, 1, '2026-02-14 07:59:20', '2026-02-14 07:59:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-14 07:59:20', '2026-02-14 07:59:20', '', 358, 'https://mrarif.me/oasis/?p=1049', 0, 'revision', '', 0),
(1114, 1, '2026-02-15 09:36:27', '2026-02-15 09:36:27', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-15 09:36:27', '2026-02-15 09:36:27', '', 358, 'https://mrarif.me/oasis/?p=1114', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1050, 1, '2026-02-14 07:59:20', '2026-02-14 07:59:20', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-14 07:59:20', '2026-02-14 07:59:20', '', 358, 'https://mrarif.me/oasis/?p=1050', 0, 'revision', '', 0),
(1051, 1, '2026-02-14 08:04:16', '2026-02-14 08:04:16', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 08:04:16', '2026-02-14 08:04:16', '', 18, 'https://mrarif.me/oasis/?p=1051', 0, 'revision', '', 0),
(1052, 1, '2026-02-14 08:04:16', '2026-02-14 08:04:16', '<h2>Our Companies</h2>				\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 08:04:16', '2026-02-14 08:04:16', '', 18, 'https://mrarif.me/oasis/?p=1052', 0, 'revision', '', 0),
(1053, 1, '2026-02-14 08:04:17', '2026-02-14 08:04:17', '<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-14 08:04:17', '2026-02-14 08:04:17', '', 18, 'https://mrarif.me/oasis/?p=1053', 0, 'revision', '', 0),
(1127, 1, '2026-02-19 07:10:09', '2026-02-19 07:10:09', '', 'team-ab (1)', '', 'inherit', 'open', 'closed', '', 'team-ab-1', '', '', '2026-02-19 07:10:09', '2026-02-19 07:10:09', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp', 0, 'attachment', 'image/webp', 0),
(1055, 1, '2026-02-14 08:12:44', '2026-02-14 08:12:44', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 08:12:44', '2026-02-14 08:12:44', '', 12, 'https://mrarif.me/oasis/?p=1055', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1056, 1, '2026-02-14 08:12:44', '2026-02-14 08:12:44', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 08:12:44', '2026-02-14 08:12:44', '', 12, 'https://mrarif.me/oasis/?p=1056', 0, 'revision', '', 0),
(1058, 1, '2026-02-14 08:14:07', '2026-02-14 08:14:07', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-14 08:14:07', '2026-02-14 08:14:07', '', 20, 'https://mrarif.me/oasis/?p=1058', 0, 'revision', '', 0),
(1059, 1, '2026-02-14 08:14:07', '2026-02-14 08:14:07', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/care-giver-team-a-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-14 08:14:07', '2026-02-14 08:14:07', '', 20, 'https://mrarif.me/oasis/?p=1059', 0, 'revision', '', 0),
(1061, 1, '2026-02-14 08:36:00', '2026-02-14 08:36:00', '', 'career ab', '', 'inherit', 'open', 'closed', '', 'career-ab', '', '', '2026-02-14 08:36:00', '2026-02-14 08:36:00', '', 301, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1062, 1, '2026-02-14 08:36:06', '2026-02-14 08:36:06', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 08:36:06', '2026-02-14 08:36:06', '', 301, 'https://mrarif.me/oasis/?p=1062', 0, 'revision', '', 0),
(1134, 1, '2026-02-19 07:12:49', '2026-02-19 07:12:49', '', 'career-ab (1)', '', 'inherit', 'open', 'closed', '', 'career-ab-1', '', '', '2026-02-19 07:12:49', '2026-02-19 07:12:49', '', 301, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp', 0, 'attachment', 'image/webp', 0),
(1064, 1, '2026-02-14 08:37:45', '2026-02-14 08:37:45', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:37:45', '2026-02-14 08:37:45', '', 24, 'https://mrarif.me/oasis/?p=1064', 0, 'revision', '', 0),
(1065, 1, '2026-02-14 08:37:45', '2026-02-14 08:37:45', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-300x300.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-150x150.jpg 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Careers-ab-768x768.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:37:45', '2026-02-14 08:37:45', '', 24, 'https://mrarif.me/oasis/?p=1065', 0, 'revision', '', 0),
(1066, 1, '2026-02-14 08:37:45', '2026-02-14 08:37:45', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:37:45', '2026-02-14 08:37:45', '', 24, 'https://mrarif.me/oasis/?p=1066', 0, 'revision', '', 0),
(1067, 1, '2026-02-14 08:45:26', '2026-02-14 08:45:26', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:45:26', '2026-02-14 08:45:26', '', 24, 'https://mrarif.me/oasis/?p=1067', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1068, 1, '2026-02-14 08:45:26', '2026-02-14 08:45:26', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										 oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270%20\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										(720)600 7270 \n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:45:26', '2026-02-14 08:45:26', '', 24, 'https://mrarif.me/oasis/?p=1068', 0, 'revision', '', 0),
(1069, 1, '2026-02-14 08:45:26', '2026-02-14 08:45:26', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:45:26', '2026-02-14 08:45:26', '', 24, 'https://mrarif.me/oasis/?p=1069', 0, 'revision', '', 0),
(1070, 1, '2026-02-14 08:47:58', '2026-02-14 08:47:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:47:58', '2026-02-14 08:47:58', '', 24, 'https://mrarif.me/oasis/?p=1070', 0, 'revision', '', 0),
(1071, 1, '2026-02-14 08:47:58', '2026-02-14 08:47:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:47:58', '2026-02-14 08:47:58', '', 24, 'https://mrarif.me/oasis/?p=1071', 0, 'revision', '', 0),
(1072, 1, '2026-02-14 08:47:58', '2026-02-14 08:47:58', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:47:58', '2026-02-14 08:47:58', '', 24, 'https://mrarif.me/oasis/?p=1072', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1073, 1, '2026-02-14 08:48:27', '2026-02-14 08:48:27', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:48:27', '2026-02-14 08:48:27', '', 24, 'https://mrarif.me/oasis/?p=1073', 0, 'revision', '', 0),
(1074, 1, '2026-02-14 08:48:27', '2026-02-14 08:48:27', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:48:27', '2026-02-14 08:48:27', '', 24, 'https://mrarif.me/oasis/?p=1074', 0, 'revision', '', 0),
(1075, 1, '2026-02-14 08:48:27', '2026-02-14 08:48:27', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-14 08:48:27', '2026-02-14 08:48:27', '', 24, 'https://mrarif.me/oasis/?p=1075', 0, 'revision', '', 0),
(1082, 1, '2026-02-14 09:27:46', '2026-02-14 09:27:46', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 09:27:46', '2026-02-14 09:27:46', '', 301, 'https://mrarif.me/oasis/?p=1082', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1076, 1, '2026-02-14 08:52:18', '2026-02-14 08:52:18', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 08:52:18', '2026-02-14 08:52:18', '', 301, 'https://mrarif.me/oasis/?p=1076', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1077, 1, '2026-02-14 08:54:07', '2026-02-14 08:54:07', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 08:54:07', '2026-02-14 08:54:07', '', 301, 'https://mrarif.me/oasis/?p=1077', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1078, 1, '2026-02-14 08:54:18', '2026-02-14 08:54:18', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 08:54:18', '2026-02-14 08:54:18', '', 301, 'https://mrarif.me/oasis/?p=1078', 0, 'revision', '', 0),
(1080, 1, '2026-02-14 09:23:59', '2026-02-14 09:23:59', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 09:23:59', '2026-02-14 09:23:59', '', 301, 'https://mrarif.me/oasis/?p=1080', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1079, 1, '2026-02-14 09:23:53', '2026-02-14 09:23:53', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. 			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"http://Adult%20Day%20Service\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 09:23:53', '2026-02-14 09:23:53', '', 301, 'https://mrarif.me/oasis/?p=1079', 0, 'revision', '', 0),
(1081, 1, '2026-02-14 09:25:04', '2026-02-14 09:25:04', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Schedule Your Tour\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 09:25:04', '2026-02-14 09:25:04', '', 301, 'https://mrarif.me/oasis/?p=1081', 0, 'revision', '', 0),
(1083, 1, '2026-02-14 09:32:21', '2026-02-14 09:32:21', '<h2>Privacy Notes</h2>		<p>At Oasis Health Care Community, we respect your privacy and are committed to protecting your personal information.</p><p>We collect only the information necessary to provide quality services, respond to inquiries, process applications, and improve our care programs. This may include basic contact details and information related to care services.</p><p>We do not sell, rent, or share your personal information with third parties, except when required by law or necessary to provide our services.</p><p>All information is handled with confidentiality and appropriate security measures to ensure it remains protected.</p><p>If you have any questions regarding your privacy or how your information is used, please contact us directly.</p><p>Oasis Health Care Community<br />Caring for your loved ones with compassion</p>', 'Privacy Notes', '', 'publish', 'closed', 'closed', '', 'privacy-notes', '', '', '2026-02-14 09:34:53', '2026-02-14 09:34:53', '', 0, 'https://mrarif.me/oasis/?page_id=1083', 0, 'page', '', 0),
(1084, 1, '2026-02-14 09:32:21', '2026-02-14 09:32:21', '', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:32:21', '2026-02-14 09:32:21', '', 1083, 'https://mrarif.me/oasis/?p=1084', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1085, 1, '2026-02-14 09:32:31', '2026-02-14 09:32:31', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/privacy-notes/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-14 09:32:31', '2026-02-14 09:32:31', '', 301, 'https://mrarif.me/oasis/?p=1085', 0, 'revision', '', 0),
(1086, 1, '2026-02-14 09:34:21', '2026-02-14 09:34:21', '', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:21', '2026-02-14 09:34:21', '', 1083, 'https://mrarif.me/oasis/?p=1086', 0, 'revision', '', 0),
(1087, 1, '2026-02-14 09:34:22', '2026-02-14 09:34:22', '', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:22', '2026-02-14 09:34:22', '', 1083, 'https://mrarif.me/oasis/?p=1087', 0, 'revision', '', 0),
(1088, 1, '2026-02-14 09:34:22', '2026-02-14 09:34:22', '<h2>Add Your Heading Text Here</h2>', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:22', '2026-02-14 09:34:22', '', 1083, 'https://mrarif.me/oasis/?p=1088', 0, 'revision', '', 0),
(1089, 1, '2026-02-14 09:34:53', '2026-02-14 09:34:53', '<h2>Add Your Heading Text Here</h2>', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:53', '2026-02-14 09:34:53', '', 1083, 'https://mrarif.me/oasis/?p=1089', 0, 'revision', '', 0),
(1090, 1, '2026-02-14 09:34:53', '2026-02-14 09:34:53', '<h2>Add Your Heading Text Here</h2>', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:53', '2026-02-14 09:34:53', '', 1083, 'https://mrarif.me/oasis/?p=1090', 0, 'revision', '', 0),
(1091, 1, '2026-02-14 09:34:53', '2026-02-14 09:34:53', '<h2>Privacy Notes</h2>		<p>At Oasis Health Care Community, we respect your privacy and are committed to protecting your personal information.</p><p>We collect only the information necessary to provide quality services, respond to inquiries, process applications, and improve our care programs. This may include basic contact details and information related to care services.</p><p>We do not sell, rent, or share your personal information with third parties, except when required by law or necessary to provide our services.</p><p>All information is handled with confidentiality and appropriate security measures to ensure it remains protected.</p><p>If you have any questions regarding your privacy or how your information is used, please contact us directly.</p><p>Oasis Health Care Community<br />Caring for your loved ones with compassion</p>', 'Privacy Notes', '', 'inherit', 'closed', 'closed', '', '1083-revision-v1', '', '', '2026-02-14 09:34:53', '2026-02-14 09:34:53', '', 1083, 'https://mrarif.me/oasis/?p=1091', 0, 'revision', '', 0),
(1092, 1, '2026-02-14 09:41:01', '2026-02-14 09:41:01', '', 'Daily Health Care Monitoring ag', '', 'inherit', 'open', 'closed', '', 'daily-health-care-monitoring-ag', '', '', '2026-02-14 09:41:01', '2026-02-14 09:41:01', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg', 0, 'attachment', 'image/jpeg', 0),
(1139, 1, '2026-02-19 07:17:51', '2026-02-19 07:17:51', '', 'Personal-Caregiving-mus (1)', '', 'inherit', 'open', 'closed', '', 'personal-caregiving-mus-1', '', '', '2026-02-19 07:17:51', '2026-02-19 07:17:51', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1094, 1, '2026-02-14 09:42:05', '2026-02-14 09:42:05', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 09:42:05', '2026-02-14 09:42:05', '', 12, 'https://mrarif.me/oasis/?p=1094', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1095, 1, '2026-02-14 09:42:06', '2026-02-14 09:42:06', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 09:42:06', '2026-02-14 09:42:06', '', 12, 'https://mrarif.me/oasis/?p=1095', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1096, 1, '2026-02-14 09:42:06', '2026-02-14 09:42:06', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-14 09:42:06', '2026-02-14 09:42:06', '', 12, 'https://mrarif.me/oasis/?p=1096', 0, 'revision', '', 0),
(1097, 1, '2026-02-14 09:43:17', '2026-02-14 09:43:17', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 09:43:17', '2026-02-14 09:43:17', '', 16, 'https://mrarif.me/oasis/?p=1097', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1098, 1, '2026-02-14 09:43:17', '2026-02-14 09:43:17', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 09:43:17', '2026-02-14 09:43:17', '', 16, 'https://mrarif.me/oasis/?p=1098', 0, 'revision', '', 0),
(1099, 1, '2026-02-14 09:43:18', '2026-02-14 09:43:18', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-14 09:43:18', '2026-02-14 09:43:18', '', 16, 'https://mrarif.me/oasis/?p=1099', 0, 'revision', '', 0),
(1100, 1, '2026-02-14 09:44:17', '2026-02-14 09:44:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Daily Health Care Monitoring</h2>		Our trained staff monitor each client’s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-14 09:44:17', '2026-02-14 09:44:17', '', 348, 'https://mrarif.me/oasis/?p=1100', 0, 'revision', '', 0),
(1101, 1, '2026-02-14 09:44:17', '2026-02-14 09:44:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Daily Health Care Monitoring</h2>		Our trained staff monitor each client’s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-14 09:44:17', '2026-02-14 09:44:17', '', 348, 'https://mrarif.me/oasis/?p=1101', 0, 'revision', '', 0),
(1102, 1, '2026-02-14 09:44:17', '2026-02-14 09:44:17', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Daily Health Care Monitoring</h2>		Our trained staff monitor each client’s general health status daily, including observation of physical condition, behavior, and well-being. Any changes or concerns are promptly documented and communicated to families and care partners.', 'Daily Health Care Monitoring', '', 'inherit', 'closed', 'closed', '', '348-revision-v1', '', '', '2026-02-14 09:44:17', '2026-02-14 09:44:17', '', 348, 'https://mrarif.me/oasis/?p=1102', 0, 'revision', '', 0),
(1103, 1, '2026-02-14 09:44:42', '2026-02-14 09:44:42', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-14 09:44:42', '2026-02-14 09:44:42', '', 356, 'https://mrarif.me/oasis/?p=1103', 0, 'revision', '', 0),
(1104, 1, '2026-02-14 09:44:42', '2026-02-14 09:44:42', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/2148934332-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-14 09:44:42', '2026-02-14 09:44:42', '', 356, 'https://mrarif.me/oasis/?p=1104', 0, 'revision', '', 0),
(1105, 1, '2026-02-14 09:44:42', '2026-02-14 09:44:42', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-14 09:44:42', '2026-02-14 09:44:42', '', 356, 'https://mrarif.me/oasis/?p=1105', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1106, 1, '2026-02-15 09:32:27', '2026-02-15 09:32:27', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-15 09:32:27', '2026-02-15 09:32:27', '', 12, 'https://mrarif.me/oasis/?p=1106', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1107, 1, '2026-02-15 09:32:27', '2026-02-15 09:32:27', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/about/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-15 09:32:27', '2026-02-15 09:32:27', '', 12, 'https://mrarif.me/oasis/?p=1107', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1108, 1, '2026-02-15 09:32:28', '2026-02-15 09:32:28', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-15 09:32:28', '2026-02-15 09:32:28', '', 12, 'https://mrarif.me/oasis/?p=1108', 0, 'revision', '', 0),
(1109, 1, '2026-02-15 09:35:44', '2026-02-15 09:35:44', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Adult Day Care</h2>		Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-15 09:35:44', '2026-02-15 09:35:44', '', 1039, 'https://mrarif.me/oasis/?p=1109', 0, 'revision', '', 0),
(1110, 1, '2026-02-15 09:35:44', '2026-02-15 09:35:44', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Adult Day Care</h2>		Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-15 09:35:44', '2026-02-15 09:35:44', '', 1039, 'https://mrarif.me/oasis/?p=1110', 0, 'revision', '', 0),
(1111, 1, '2026-02-15 09:35:45', '2026-02-15 09:35:45', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Comprehensive-Services-Offered-by-Oasis-Health-Care-Community-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Oasis Adult Day Care</h2>		Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.', 'Adult Day Services', '', 'inherit', 'closed', 'closed', '', '1039-revision-v1', '', '', '2026-02-15 09:35:45', '2026-02-15 09:35:45', '', 1039, 'https://mrarif.me/oasis/?p=1111', 0, 'revision', '', 0),
(1112, 1, '2026-02-15 09:36:26', '2026-02-15 09:36:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-15 09:36:26', '2026-02-15 09:36:26', '', 358, 'https://mrarif.me/oasis/?p=1112', 0, 'revision', '', 0),
(1113, 1, '2026-02-15 09:36:26', '2026-02-15 09:36:26', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-ah-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-15 09:36:26', '2026-02-15 09:36:26', '', 358, 'https://mrarif.me/oasis/?p=1113', 0, 'revision', '', 0),
(1119, 2, '2026-02-16 19:50:24', '2026-02-16 19:50:24', '<h2>Our Communities</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-16 19:50:24', '2026-02-16 19:50:24', '', 18, 'https://mrarif.me/oasis/?p=1119', 0, 'revision', '', 0),
(1117, 2, '2026-02-16 19:50:24', '2026-02-16 19:50:24', '<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-16 19:50:24', '2026-02-16 19:50:24', '', 18, 'https://mrarif.me/oasis/?p=1117', 0, 'revision', '', 0),
(1118, 2, '2026-02-16 19:50:24', '2026-02-16 19:50:24', '<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Companies', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-16 19:50:24', '2026-02-16 19:50:24', '', 18, 'https://mrarif.me/oasis/?p=1118', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1120, 2, '2026-02-16 19:54:54', '2026-02-16 19:54:54', '<h2>Our Communities</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>', 'Our Communities', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2026-02-16 19:54:54', '2026-02-16 19:54:54', '', 18, 'https://mrarif.me/oasis/?p=1120', 0, 'revision', '', 0),
(1125, 1, '2026-02-19 07:05:25', '2026-02-19 07:05:25', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:05:25', '2026-02-19 07:05:25', '', 12, 'https://mrarif.me/oasis/?p=1125', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1123, 1, '2026-02-19 07:05:24', '2026-02-19 07:05:24', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:05:24', '2026-02-19 07:05:24', '', 12, 'https://mrarif.me/oasis/?p=1123', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1124, 1, '2026-02-19 07:05:25', '2026-02-19 07:05:25', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:05:25', '2026-02-19 07:05:25', '', 12, 'https://mrarif.me/oasis/?p=1124', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1130, 1, '2026-02-19 07:10:15', '2026-02-19 07:10:15', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:10:15', '2026-02-19 07:10:15', '', 12, 'https://mrarif.me/oasis/?p=1130', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1128, 1, '2026-02-19 07:10:14', '2026-02-19 07:10:14', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:10:14', '2026-02-19 07:10:14', '', 12, 'https://mrarif.me/oasis/?p=1128', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1129, 1, '2026-02-19 07:10:14', '2026-02-19 07:10:14', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:10:14', '2026-02-19 07:10:14', '', 12, 'https://mrarif.me/oasis/?p=1129', 0, 'revision', '', 0),
(1131, 1, '2026-02-19 07:11:00', '2026-02-19 07:11:00', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-19 07:11:00', '2026-02-19 07:11:00', '', 20, 'https://mrarif.me/oasis/?p=1131', 0, 'revision', '', 0),
(1132, 1, '2026-02-19 07:11:00', '2026-02-19 07:11:00', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-19 07:11:00', '2026-02-19 07:11:00', '', 20, 'https://mrarif.me/oasis/?p=1132', 0, 'revision', '', 0),
(1133, 1, '2026-02-19 07:11:00', '2026-02-19 07:11:00', '<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Our Team</h2>		<p>Our team is made up of compassionate caregivers, healthcare professionals, and support staff who are dedicated to providing high-quality, person-centered care. All staff members are carefully screened, trained, and committed to treating every individual with dignity, respect, and kindness. Leadership brings healthcare and community service experience focused on safety, compliance, and continuous improvement.</p>', 'Our Team', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2026-02-19 07:11:00', '2026-02-19 07:11:00', '', 20, 'https://mrarif.me/oasis/?p=1133', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1135, 1, '2026-02-19 07:12:55', '2026-02-19 07:12:55', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.								<a href=\"https://mrarif.me/oasis/careers/\">\n									Apply Now\n					</a>\n																			<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=696%20W.%2084th%20AVE.%20Thornton%2C%20CO%2080260&#038;t=m&#038;z=13&#038;output=embed&#038;iwloc=near\"\n					title=\"696 W. 84th AVE. Thornton, CO 80260\"\n					aria-label=\"696 W. 84th AVE. Thornton, CO 80260\"\n			></iframe>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />													<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults.</p>			<h6>Contact Info</h6>							\n									<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=13&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"fax:3032659199\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M480 160V77.25a32 32 0 0 0-9.38-22.63L425.37 9.37A32 32 0 0 0 402.75 0H160a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32h320a32 32 0 0 0 32-32V192a32 32 0 0 0-32-32zM288 432a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm128 128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-128a16 16 0 0 1-16 16h-32a16 16 0 0 1-16-16v-32a16 16 0 0 1 16-16h32a16 16 0 0 1 16 16zm0-112H192V64h160v48a16 16 0 0 0 16 16h48zM64 128H32a32 32 0 0 0-32 32v320a32 32 0 0 0 32 32h32a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32z\"></path></svg>						\n										303-265-9199\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n					<a href=\"#\" target=\"_blank\">\n						Facebook-f\n						<svg aria-hidden=\"true\" viewBox=\"0 0 320 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						X-twitter\n						<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"></path></svg>					</a>\n					<a href=\"#\" target=\"_blank\">\n						Linkedin-in\n						<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z\"></path></svg>					</a>\n							<h6>Quicklinks</h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/locations/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Locations\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-companies/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Companies\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/our-team/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Our Team\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/privacy-notes/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Privacy Notes\n											</a>\n									</li>\n						</ul>\n							<h6>Services </h6>							\n									<ul>\n							<li>\n											<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Adult Day Service\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care\n											</a>\n									</li>\n								<li>\n											<a href=\"https://mrarif.me/oasis/transportation/\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Transportation\n											</a>\n									</li>\n						</ul>\n							© 2026. All Rights Reserved. Website Developed by <a href=\"https://devrivo.com/\" target=\"_blank\" rel=\"noopener\">Devrivo</a>', 'Footer', '', 'inherit', 'closed', 'closed', '', '301-revision-v1', '', '', '2026-02-19 07:12:55', '2026-02-19 07:12:55', '', 301, 'https://mrarif.me/oasis/?p=1135', 0, 'revision', '', 0),
(1136, 1, '2026-02-19 07:13:50', '2026-02-19 07:13:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-19 07:13:50', '2026-02-19 07:13:50', '', 24, 'https://mrarif.me/oasis/?p=1136', 0, 'revision', '', 0),
(1137, 1, '2026-02-19 07:13:50', '2026-02-19 07:13:50', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-19 07:13:50', '2026-02-19 07:13:50', '', 24, 'https://mrarif.me/oasis/?p=1137', 0, 'revision', '', 0),
(1138, 1, '2026-02-19 07:13:51', '2026-02-19 07:13:51', '<h2>Careers</h2>		<p>Join a team that makes a difference every day. Oasis Health Care Community is always seeking caring, dependable, and motivated professionals to join our growing organization. We offer a supportive work environment, training opportunities, and the chance to positively impact the lives of others.<br /><strong>Current opportunities may include:</strong></p>					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										 Direct Care Workers / Caregivers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Activity Assistants\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Home Care Aides\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Drivers (Non-Medical Transportation)\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Nurses (Part-Time)\n									</li>\n						</ul>\n				Apply by submitting your resume through our website or contacting our office.													<img width=\"1000\" height=\"1000\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-300x300.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-150x150.webp 150w, https://mrarif.me/oasis/wp-content/uploads/2026/02/career-ab-1-768x768.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																										<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Work-Where-Your-Compassion-Matters-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Join the Oasis Health Care Community Team</h2>					<h5>Work Where Your Compassion Matters</h5>		<p>At <strong>Oasis Health Care Community</strong>, we believe meaningful work starts with meaningful relationships. If you’re passionate about helping others, making a difference, and working in a supportive, respectful environment — we’d love to hear from you. Our team members are the heart of Oasis.</p>		\n												<h5>\n													Why Work at Oasis? 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Family-focused, supportive workplace</li><li>Meaningful work that impacts lives daily</li><li>Ongoing training and growth opportunities</li><li>Stable daytime hours (no overnight shifts)</li><li>Positive, team-oriented culture</li></ul>										\n												<h5>\n													Positions We May Hire For												</h5>\n												(Availability may vary)											\n											<ul style=\"margin-left: 18px;\"><li>Adult Day Care Caregivers</li><li>Activity Coordinators</li><li>Drivers (Transportation Services)</li><li>Program Assistants</li><li>Administrative &amp; Support Staff</li></ul><p>Experience in adult care, senior services, or healthcare is a plus — but compassion and reliability<br />matter most.</p>										\n												<h5>\n													What We Look For 												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Kind, patient, and respectful individuals</li><li>Strong communication skills</li><li>Dependability and professionalism</li><li>Commitment to participant safety and dignity</li><li>Willingness to learn and grow</li></ul>										\n												<h5>\n													Benefits (May Include)												</h5>\n											<ul style=\"margin-left: 18px;\"><li>Competitive pay</li><li>Training and onboarding support</li><li>Opportunities for advancement</li><li>Positive work-life balance</li></ul>										\n					<h2>How to Apply </h2>					<h5>Interested in joining our team?</h5>					<h6>Adult Day Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n						</ul>\n							<h6>Home Care</h6>							<ul>\n							<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasishc23@gmail.com\n											</a>\n									</li>\n								<li>\n											<a href=\"tel:7206007270\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-600-7270\n											</a>\n									</li>\n						</ul>\n				<p>Or complete our<strong> Employment Inquiry Form</strong> and a team member will contact you.</p>			<h2>Equal Opportunity Employer </h2>		Oasis Health Care Community is an equal opportunity employer. We value diversity and are committed to creating an inclusive environment for all employees.', 'Careers', '', 'inherit', 'closed', 'closed', '', '24-revision-v1', '', '', '2026-02-19 07:13:51', '2026-02-19 07:13:51', '', 24, 'https://mrarif.me/oasis/?p=1138', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1140, 1, '2026-02-19 07:17:56', '2026-02-19 07:17:56', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:17:56', '2026-02-19 07:17:56', '', 12, 'https://mrarif.me/oasis/?p=1140', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1141, 1, '2026-02-19 07:17:56', '2026-02-19 07:17:56', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:17:56', '2026-02-19 07:17:56', '', 12, 'https://mrarif.me/oasis/?p=1141', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1142, 1, '2026-02-19 07:17:56', '2026-02-19 07:17:56', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:17:56', '2026-02-19 07:17:56', '', 12, 'https://mrarif.me/oasis/?p=1142', 0, 'revision', '', 0),
(1143, 1, '2026-02-19 07:18:38', '2026-02-19 07:18:38', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-19 07:18:38', '2026-02-19 07:18:38', '', 16, 'https://mrarif.me/oasis/?p=1143', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1144, 1, '2026-02-19 07:18:38', '2026-02-19 07:18:38', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-19 07:18:38', '2026-02-19 07:18:38', '', 16, 'https://mrarif.me/oasis/?p=1144', 0, 'revision', '', 0),
(1145, 1, '2026-02-19 07:18:39', '2026-02-19 07:18:39', '<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans and Treatments						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/transportation/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Transportation						\n					</h5>\n									<p>\n						Transportation should never be a barrier to quality care. Oasis provides dependable, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/caregiver-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-administration/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Administration						\n					</h5>', 'Services', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2026-02-19 07:18:39', '2026-02-19 07:18:39', '', 16, 'https://mrarif.me/oasis/?p=1145', 0, 'revision', '', 0),
(1146, 1, '2026-02-19 07:19:12', '2026-02-19 07:19:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-19 07:19:12', '2026-02-19 07:19:12', '', 356, 'https://mrarif.me/oasis/?p=1146', 0, 'revision', '', 0),
(1147, 1, '2026-02-19 07:19:12', '2026-02-19 07:19:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-19 07:19:12', '2026-02-19 07:19:12', '', 356, 'https://mrarif.me/oasis/?p=1147', 0, 'revision', '', 0),
(1148, 1, '2026-02-19 07:19:12', '2026-02-19 07:19:12', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Personal Caregiving</h2>		<p>Compassionate assistance with activities of daily living such as grooming, toileting, dressing, mobility, and hygiene, delivered with dignity and respect.</p>', 'Personal Caregiving', '', 'inherit', 'closed', 'closed', '', '356-revision-v1', '', '', '2026-02-19 07:19:12', '2026-02-19 07:19:12', '', 356, 'https://mrarif.me/oasis/?p=1148', 0, 'revision', '', 0),
(1150, 1, '2026-02-19 07:36:34', '2026-02-19 07:36:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-19 07:36:34', '2026-02-19 07:36:34', '', 358, 'https://mrarif.me/oasis/?p=1150', 0, 'revision', '', 0),
(1151, 1, '2026-02-19 07:36:34', '2026-02-19 07:36:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-19 07:36:34', '2026-02-19 07:36:34', '', 358, 'https://mrarif.me/oasis/?p=1151', 0, 'revision', '', 0),
(1152, 1, '2026-02-19 07:36:34', '2026-02-19 07:36:34', '<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Transportation-aa-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Safe, Reliable Transportation You Can Trust </h2>		Transportation should never be a barrier to quality care. Oasis provides dependable, scheduled transportation to and from our centers, helping participants arrive comfortably and return home safely each day.					<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Trained, compassionate drivers \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Clean, well-maintained vehicles \n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Assistance with boarding and exiting\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Consistent pickup and drop-off schedules \n									</li>\n						</ul>\n												<a href=\"https://mrarif.me/oasis/contact-us/\">\n									Ask About Transportation \n					</a>', 'Transportation', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2026-02-19 07:36:34', '2026-02-19 07:36:34', '', 358, 'https://mrarif.me/oasis/?p=1152', 0, 'revision', '', 0),
(1153, 1, '2026-02-19 07:38:32', '2026-02-19 07:38:32', 'Adult Day Care centers provide a safe, structured, and engaging environment for seniors and disabled adults during the daytime. At Oasis Adult Day Care Center, participants receive personal care, health monitoring, nutritious meals, and therapeutic activities that support independence and overall well-being. Social interaction and daily routines help improve mental stimulation, memory, and emotional health while giving families peace of mind.', 'The Importance of Adult Day Care for Seniors and Disabled Adults', '', 'inherit', 'closed', 'closed', '', '560-autosave-v1', '', '', '2026-02-19 07:38:32', '2026-02-19 07:38:32', '', 560, 'https://mrarif.me/oasis/?p=1153', 0, 'revision', '', 0),
(1156, 1, '2026-02-19 07:44:17', '2026-02-19 07:44:17', '', 'sociel-activiti-ab (1)', '', 'inherit', 'open', 'closed', '', 'sociel-activiti-ab-1', '', '', '2026-02-19 07:44:17', '2026-02-19 07:44:17', '', 12, 'https://mrarif.me/oasis/wp-content/uploads/2026/02/sociel-activiti-ab-1.webp', 0, 'attachment', 'image/webp', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1157, 1, '2026-02-19 07:44:51', '2026-02-19 07:44:51', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:44:51', '2026-02-19 07:44:51', '', 12, 'https://mrarif.me/oasis/?p=1157', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1158, 1, '2026-02-19 07:44:52', '2026-02-19 07:44:52', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:44:52', '2026-02-19 07:44:52', '', 12, 'https://mrarif.me/oasis/?p=1158', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1159, 1, '2026-02-19 07:44:52', '2026-02-19 07:44:52', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:44:52', '2026-02-19 07:44:52', '', 12, 'https://mrarif.me/oasis/?p=1159', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1160, 1, '2026-02-19 07:44:59', '2026-02-19 07:44:59', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:44:59', '2026-02-19 07:44:59', '', 12, 'https://mrarif.me/oasis/?p=1160', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1161, 1, '2026-02-19 07:45:00', '2026-02-19 07:45:00', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:45:00', '2026-02-19 07:45:00', '', 12, 'https://mrarif.me/oasis/?p=1161', 0, 'revision', '', 0);
INSERT INTO `wpo_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1162, 1, '2026-02-19 07:45:00', '2026-02-19 07:45:00', '<h1>Welcome To Oasis Health Care Community</h1>					<h5>Caring for your loved ones with compassion</h5>										<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n									<h2>Our Companies</h2>				\n															<a href=\"https://mrarif.me/oasis/adult-day-services/\">\n												<h5>\n													 Oasis Adult Day Care												</h5>\n											<p>Oasis Adult Day Care provides a safe, structured, and engaging daytime environment for older adults and individuals with disabilities. Services include supervision, personal care, health monitoring, meals, therapeutic activities, and social engagement to promote independence and quality of life.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/oasis-home-care/\">\n												<h5>\n													Oasis Home Care												</h5>\n											<p>Oasis Home Care delivers non-medical in-home support services that allow individuals to remain safely in their homes. Services include personal care, companionship, medication reminders, light housekeeping, and assistance with daily activities.</p>										\n															</a>\n															<a href=\"https://mrarif.me/oasis/transportation/\">\n												<h5>\n													Oasis Non-Medical Transportation												</h5>\n											<p>Our non-medical transportation service supports participants in accessing Adult Day Services and community resources safely and reliably, ensuring continuity of care and engagement.</p>										\n															</a>\n															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/About-Oasis-Adult-Day-Care-aa-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>About Oasis Adult Day Care</h2>		<p>The Oasis Adult Daycare Center providing comprehensive program, offering health, rehabilitation, and social services to seniors and disabled adults. The center offer an adult day-time program for frail seniors and disabled adults in a comfortable group setting. We provide nursing care, nutritional services, rehabilitative and restorative therapies. All the activities are geared to promote stimulation and increase memory. Also, each participant is served a well balanced hot lunch and a morning snack every day. The center\'s staff members are highly trained and specialize in their professions.</p>								<a href=\"https://mrarif.me/oasis/about/\">\n									Learn More\n					</a>\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							 Appointment						\n					</h5>\n									<p>\n						Convenient scheduling options to fit your busy life.					</p>\n												<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Schedule Your Appointment\n					</a>\n																			<img width=\"1000\" height=\"800\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-300x240.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/team-ab-1-768x614.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																		\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 48 48\" width=\"512\"><g transform=\"translate(-240 -48)\"><g id=\"Icon\"><g transform=\"matrix(.707 -.707 .707 .707 87.91 154.711)\"><path d=\"m179 80v4c0 .552.448 1 1 1h8c.552 0 1-.448 1-1s-.448-1-1-1h-7v-3c0-.552-.448-1-1-1s-1 .448-1 1z\"></path></g><g transform=\"translate(98)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(98 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 8)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(106 16)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(114)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(122)\"><path d=\"m155 67.2c0-.583-.232-1.143-.644-1.556-.413-.412-.973-.644-1.556-.644h-1.6c-.583 0-1.143.232-1.556.644-.412.413-.644.973-.644 1.556v1.6c0 .583.232 1.143.644 1.556.413.412.973.644 1.556.644h1.6c.583 0 1.143-.232 1.556-.644.412-.413.644-.973.644-1.556zm-2 0v1.6c0 .053-.021.104-.059.141-.037.038-.088.059-.141.059h-1.6c-.053 0-.104-.021-.141-.059-.038-.037-.059-.088-.059-.141v-1.6c0-.053.021-.104.059-.141.037-.038.088-.059.141-.059h1.6c.053 0 .104.021.141.059.038.037.059.088.059.141z\"></path></g><g transform=\"translate(96)\"><path d=\"m171.517 91h-21.517c-1.326 0-2.598-.527-3.536-1.464-.937-.938-1.464-2.21-1.464-3.536v-28c0-2.761 2.239-5 5-5h3v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h14v-1c0-1.657 1.343-3 3-3s3 1.343 3 3v1h3c2.761 0 5 2.239 5 5v17.517c2.443 2.019 4 5.07 4 8.483 0 6.071-4.929 11-11 11-3.413 0-6.464-1.557-8.483-4zm8.483-16c4.967 0 9 4.033 9 9s-4.033 9-9 9-9-4.033-9-9 4.033-9 9-9zm5-.799v-11.201h-38v23c0 .796.316 1.559.879 2.121.562.563 1.325.879 2.121.879h20.201c-.768-1.5-1.201-3.2-1.201-5 0-6.071 4.929-11 11-11 1.8 0 3.5.433 5 1.201zm-6-19.201v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-14v1c0 1.657-1.343 3-3 3s-3-1.343-3-3v-1h-3c-1.657 0-3 1.343-3 3v3h38v-3c0-1.657-1.343-3-3-3zm-2-3v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1zm-20 0v4c0 .552-.448 1-1 1s-1-.448-1-1v-4c0-.552.448-1 1-1s1 .448 1 1z\"></path></g></g></g></svg>				\n									<h5>\n							Team						\n					</h5>\n									<p>\n						Caring, experienced team for your well-being					</p>\n												<a href=\"https://mrarif.me/oasis/our-team/\">\n									Meet Our Team\n					</a>\n									<h2>Services Provided</h2>															<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Care-Plans-and-Treatments-agv-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/care-plans/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Care Plans 						\n					</h5>\n									<p>\n						We develop individualized, person-centered care plans based on each client’s needs, preferences, and goals. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Daily-Health-Care-Monitoring-ag-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/daily-health-care-monitoring/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Daily Health Care Monitoring						\n					</h5>\n									<p>\n						Our trained staff monitor each client’s general health status daily, including observation of physical condition, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/69637-1-768x512.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/meals-breakfast-lunch-snacks/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Meals: Breakfast, Lunch, Snacks						\n					</h5>\n									<p>\n						Nutritious meals and snacks are provided daily to support health and wellness.					</p>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Medication-Reminders-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/medication-reminders/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Medication Reminders						\n					</h5>\n									<p>\n						We provide medication reminders to help clients take their medications as prescribed, 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Nursing-Dietary-Counseling-ag-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/nursing-dietary-counseling/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Nursing, Dietary Counseling						\n					</h5>\n									<p>\n						At Oasis, our nursing and dietary counseling services focus on promoting overall health, proper nutrition, and ongoing wellness. 					</p>\n																	<img width=\"1000\" height=\"667\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1.webp 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-300x200.webp 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Personal-Caregiving-mus-1-768x512.webp 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																					<a href=\"https://mrarif.me/oasis/personal-caregiving/\">\n				<svg xmlns=\"http://www.w3.org/2000/svg\" clip-rule=\"evenodd\" fill-rule=\"evenodd\" height=\"512\" stroke-linejoin=\"round\" stroke-miterlimit=\"2\" viewBox=\"0 0 16 16\" width=\"512\"><g id=\"Icon\"><path d=\"m11.712 3.227-8.485 8.485c-.293.293-.293.768 0 1.061s.768.293 1.061 0l8.485-8.485c.293-.293.293-.768 0-1.061s-.768-.293-1.061 0z\"></path><path d=\"m12.993 9.914v-6.157c0-.414-.336-.75-.75-.75h-6.157c-.414 0-.75.336-.75.75s.336.75.75.75h5.407v5.407c0 .414.336.75.75.75s.75-.336.75-.75z\"></path></g></svg>			\n					</a>\n									<h5>\n							Personal Caregiving						\n					</h5>\n									<p>\n						Compassionate assistance with activities of daily living such as grooming, toileting, dressing, 					</p>\n												<a href=\"https://mrarif.me/oasis/services/\">\n									View All Services\n					</a>\n									<h2>Social Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Arts and Crafts\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Daily Exercise\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Educational Learning Programs\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Field Trips (Local Outings)\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Gardening\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Holidays and Birthday Celebrations\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Live Entertainment/Performers\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mental Stimulation Games\n									</li>\n						</ul>\n									<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Movies\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Outdoor BBQ\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Socialization/Interactions\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Therapeutic Activities\n									</li>\n						</ul>\n																	<img width=\"1000\" height=\"668\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa.jpg 1000w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-300x200.jpg 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Yoga-For-The-Brain-aa-768x513.jpg 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" />																<h2>Day Program Activities</h2>							<ul>\n							<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Art Therapy, Painting and Expressive Drawing\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Yoga For The Brain\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Low impact Aerobics\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Mindfulness Relaxation Exercises\n									</li>\n								<li>\n							<svg aria-hidden=\"true\" viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z\"></path></svg>						\n										Personalized care and support\n									</li>\n						</ul>', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2026-02-19 07:45:00', '2026-02-19 07:45:00', '', 12, 'https://mrarif.me/oasis/?p=1162', 0, 'revision', '', 0),
(1164, 1, '2026-02-19 07:46:58', '2026-02-19 07:46:58', '<ul>\n							<li>\n											<a href=\"https://maps.google.com/maps?ll=39.848549,-104.99545&#038;z=10&#038;t=m&#038;hl=en-US&#038;gl=US&#038;mapclient=embed&#038;q=696%20W%2084th%20Ave%20Thornton%2C%20CO%2080260%20USA\" target=\"_blank\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 384 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z\"></path></svg>						\n										696 W. 84th AVE. Thornton, CO 80260\n											</a>\n									</li>\n						</ul>\n									<ul>\n							<li>\n											<a href=\"tel:7205044242\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>						\n										720-504-4242\n											</a>\n									</li>\n								<li>\n											<a href=\"mailto:oasisadc1@gmail.com\">\n							<svg aria-hidden=\"true\" viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z\"></path></svg>						\n										oasisadc1@gmail.com\n											</a>\n									</li>\n						</ul>\n																	<img width=\"862\" height=\"341\" src=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png\" alt=\"\" srcset=\"https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab.png 862w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-300x119.png 300w, https://mrarif.me/oasis/wp-content/uploads/2026/02/Oasis-Adult-Day-Care-Center-logo-ab-768x304.png 768w\" sizes=\"(max-width: 862px) 100vw, 862px\" />																					<a href=\"https://mrarif.me/oasis/schedule-your-appointment/\">\n									Book Now\n					</a>\n									<h1>Blog</h1>', 'Header', '', 'inherit', 'closed', 'closed', '', '291-revision-v1', '', '', '2026-02-19 07:46:58', '2026-02-19 07:46:58', '', 291, 'https://mrarif.me/oasis/?p=1164', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpo_termmeta`
--

CREATE TABLE `wpo_termmeta` (
  `meta_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpo_terms`
--

CREATE TABLE `wpo_terms` (
  `term_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_terms`
--

INSERT INTO `wpo_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'astra-child', 'astra-child', 0),
(3, 'Primary Menu', 'primary-menu', 0),
(4, 'header', 'header', 0),
(5, 'footer', 'footer', 0),
(6, 'container', 'container', 0),
(7, 'archive', 'archive', 0),
(8, 'Senior Health &amp; Wellness Tips', 'senior-health-wellness-tips', 0),
(9, 'Caregiving Resources', 'caregiving-resources', 0),
(10, 'Updates on Our Programs and Services', 'updates-on-our-programs-and-services', 0),
(11, 'Community Events &amp; Announcements', 'community-events-announcements', 0),
(12, 'single-post', 'single-post', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpo_term_relationships`
--

CREATE TABLE `wpo_term_relationships` (
  `object_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_term_relationships`
--

INSERT INTO `wpo_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 1, 0),
(11, 2, 0),
(35, 3, 0),
(31, 3, 0),
(38, 3, 0),
(36, 3, 0),
(37, 3, 0),
(33, 3, 0),
(32, 3, 0),
(34, 3, 0),
(304, 5, 0),
(298, 4, 0),
(291, 4, 0),
(524, 6, 0),
(301, 5, 0),
(306, 5, 0),
(310, 5, 0),
(366, 3, 0),
(365, 3, 0),
(364, 3, 0),
(363, 3, 0),
(362, 3, 0),
(361, 3, 0),
(360, 3, 0),
(381, 5, 0),
(383, 5, 0),
(557, 7, 0),
(560, 8, 0),
(563, 9, 0),
(572, 6, 0),
(566, 10, 0),
(569, 11, 0),
(574, 6, 0),
(576, 7, 0),
(578, 7, 0),
(594, 12, 0),
(631, 3, 0),
(695, 3, 0),
(948, 5, 0),
(968, 3, 0),
(987, 3, 0),
(1043, 3, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpo_term_taxonomy`
--

CREATE TABLE `wpo_term_taxonomy` (
  `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL,
  `term_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_term_taxonomy`
--

INSERT INTO `wpo_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 0),
(2, 2, 'wp_theme', '', 0, 1),
(3, 3, 'nav_menu', '', 0, 20),
(4, 4, 'elementor_library_type', '', 0, 1),
(5, 5, 'elementor_library_type', '', 0, 1),
(6, 6, 'elementor_library_type', '', 0, 3),
(7, 7, 'elementor_library_type', '', 0, 1),
(8, 8, 'category', '', 0, 1),
(9, 9, 'category', '', 0, 1),
(10, 10, 'category', '', 0, 1),
(11, 11, 'category', '', 0, 1),
(12, 12, 'elementor_library_type', '', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wpo_usermeta`
--

CREATE TABLE `wpo_usermeta` (
  `umeta_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_usermeta`
--

INSERT INTO `wpo_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'web-admin'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpo_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(13, 1, 'wpo_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', 'theme_editor_notice'),
(15, 1, 'show_welcome_panel', '1'),
(16, 1, 'session_tokens', 'a:3:{s:64:\"a3c8b44590b37d2bd1cdb324c9cbe5e8bfda66a2d633b2eb3e59f7601c5dfc54\";a:4:{s:10:\"expiration\";i:1771773409;s:2:\"ip\";s:14:\"203.95.220.192\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1770563809;}s:64:\"16c900d27a4b6d9b24ddb10f693524811a4217d0561c39c589801a8b8c6b687d\";a:4:{s:10:\"expiration\";i:1772694147;s:2:\"ip\";s:12:\"45.120.96.21\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1771484547;}s:64:\"d391d130aa981091c8abbfb8fdb649a0890a8ac9034cdc0f9dfccc4d0e26b0b1\";a:4:{s:10:\"expiration\";i:1771698713;s:2:\"ip\";s:13:\"45.120.99.249\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1771525913;}}'),
(17, 1, 'wpo_dashboard_quick_press_last_post_id', '1038'),
(18, 1, 'community-events-location', 'a:1:{s:2:\"ip\";s:11:\"45.120.99.0\";}'),
(19, 1, 'elementor_introduction', 'a:3:{s:27:\"e-editor-one-notice-pointer\";b:1;s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;}'),
(20, 1, 'wpo_elementor_connect_common_data', 'a:7:{s:9:\"client_id\";s:32:\"70Xgvcc6xysVEMM92TdSFvKdu0sLyMNr\";s:11:\"auth_secret\";s:32:\"3V0CWUlplkVbM0vOMKHEysbLD18xdFS8\";s:12:\"access_token\";s:292:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2MTQ4NjIiLCJhdWQiOiJodHRwczovL21yYXJpZi5tZS9vYXNpcy8iLCJjbGllbnRfaWQiOiI3MFhndmNjNnh5c1ZFTU05MlRkU0Z2S2R1MHNMeU1OciIsImNvbm5lY3RfdHlwZSI6ImFjdGl2YXRlIiwiaWF0IjoxNzcwMDI3MDcwLCJleHAiOjMxNzMxNDQ2OTQ3MH0.iikVYwVuJMZkPkr8bmGEj6d5zcj9bZmp5zQT_LV3Uik\";s:19:\"access_token_secret\";s:32:\"CxusviXCtdy4pP8SILrrc8QIGSA6a3R6\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:21:\"arifbabu587@gmail.com\";}s:19:\"data_share_opted_in\";b:1;}'),
(21, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:\"link-target\";i:1;s:15:\"title-attribute\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),
(22, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),
(23, 1, 'wpo_user-settings', 'libraryContent=browse&editor=tinymce'),
(24, 1, 'wpo_user-settings-time', '1771049987'),
(25, 1, 'nav_menu_recently_edited', '3'),
(26, 2, 'nickname', 'oasisadc1@gmail.com'),
(27, 2, 'first_name', ''),
(28, 2, 'last_name', ''),
(29, 2, 'description', ''),
(30, 2, 'rich_editing', 'true'),
(31, 2, 'syntax_highlighting', 'true'),
(32, 2, 'comment_shortcuts', 'false'),
(33, 2, 'admin_color', 'fresh'),
(34, 2, 'use_ssl', '0'),
(35, 2, 'show_admin_bar_front', 'true'),
(36, 2, 'locale', ''),
(37, 2, 'wpo_capabilities', 'a:1:{s:13:\"administrator\";b:1;}'),
(38, 2, 'wpo_user_level', '10'),
(39, 2, 'dismissed_wp_pointers', ''),
(40, 2, 'session_tokens', 'a:1:{s:64:\"407982debee28ebbe798ce74bcfad263be2f3f045aa503d9636ecf4f4d87b297\";a:4:{s:10:\"expiration\";i:1771443844;s:2:\"ip\";s:13:\"73.153.143.48\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1771271044;}}'),
(41, 2, 'wpo_dashboard_quick_press_last_post_id', '1115'),
(42, 2, 'community-events-location', 'a:1:{s:2:\"ip\";s:12:\"73.153.143.0\";}'),
(43, 2, 'elementor_introduction', 'a:2:{s:27:\"e-editor-one-notice-pointer\";b:1;s:27:\"ai-get-started-announcement\";b:1;}'),
(44, 1, 'astra-optin-notice', 'notice-dismissed');

-- --------------------------------------------------------

--
-- Table structure for table `wpo_users`
--

CREATE TABLE `wpo_users` (
  `ID` bigint(20) UNSIGNED NOT NULL,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpo_users`
--

INSERT INTO `wpo_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'web-admin', '$wp$2y$10$5csaAuyfGig31noUTTfUveqTQPJTrq5OCyuBfMdzhix3Ee8wP47zG', 'web-admin', 'arifwebsols@gmail.com', 'https://mrarif.me/oasis', '2026-02-02 09:58:56', '', 0, 'web-admin'),
(2, 'oasisadc1@gmail.com', '$wp$2y$10$rflGoSvJpRbZzpINMm0foeyi7NqN4bVPBuov6G99Gr.ze7rPZjxGm', 'oasisadc1gmail-com', 'oasisadc1@gmail.com', '', '2026-02-16 19:40:34', '', 0, 'oasisadc1@gmail.com');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `wpo_commentmeta`
--
ALTER TABLE `wpo_commentmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `comment_id` (`comment_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpo_comments`
--
ALTER TABLE `wpo_comments`
  ADD PRIMARY KEY (`comment_ID`),
  ADD KEY `comment_post_ID` (`comment_post_ID`),
  ADD KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  ADD KEY `comment_date_gmt` (`comment_date_gmt`),
  ADD KEY `comment_parent` (`comment_parent`),
  ADD KEY `comment_author_email` (`comment_author_email`(10));

--
-- Indexes for table `wpo_e_events`
--
ALTER TABLE `wpo_e_events`
  ADD PRIMARY KEY (`id`),
  ADD KEY `created_at_index` (`created_at`);

--
-- Indexes for table `wpo_e_notes`
--
ALTER TABLE `wpo_e_notes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `route_url_index` (`route_url`(191)),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `parent_id_index` (`parent_id`),
  ADD KEY `author_id_index` (`author_id`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_resolved_index` (`is_resolved`),
  ADD KEY `is_public_index` (`is_public`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `last_activity_at_index` (`last_activity_at`);

--
-- Indexes for table `wpo_e_notes_users_relations`
--
ALTER TABLE `wpo_e_notes_users_relations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `note_id_index` (`note_id`),
  ADD KEY `user_id_index` (`user_id`);

--
-- Indexes for table `wpo_e_submissions`
--
ALTER TABLE `wpo_e_submissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  ADD KEY `main_meta_id_index` (`main_meta_id`),
  ADD KEY `hash_id_index` (`hash_id`),
  ADD KEY `type_index` (`type`),
  ADD KEY `post_id_index` (`post_id`),
  ADD KEY `element_id_index` (`element_id`),
  ADD KEY `campaign_id_index` (`campaign_id`),
  ADD KEY `user_id_index` (`user_id`),
  ADD KEY `user_ip_index` (`user_ip`),
  ADD KEY `status_index` (`status`),
  ADD KEY `is_read_index` (`is_read`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`),
  ADD KEY `referer_index` (`referer`(191)),
  ADD KEY `referer_title_index` (`referer_title`(191));

--
-- Indexes for table `wpo_e_submissions_actions_log`
--
ALTER TABLE `wpo_e_submissions_actions_log`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `action_name_index` (`action_name`),
  ADD KEY `status_index` (`status`),
  ADD KEY `created_at_gmt_index` (`created_at_gmt`),
  ADD KEY `updated_at_gmt_index` (`updated_at_gmt`),
  ADD KEY `created_at_index` (`created_at`),
  ADD KEY `updated_at_index` (`updated_at`);

--
-- Indexes for table `wpo_e_submissions_values`
--
ALTER TABLE `wpo_e_submissions_values`
  ADD PRIMARY KEY (`id`),
  ADD KEY `submission_id_index` (`submission_id`),
  ADD KEY `key_index` (`key`);

--
-- Indexes for table `wpo_links`
--
ALTER TABLE `wpo_links`
  ADD PRIMARY KEY (`link_id`),
  ADD KEY `link_visible` (`link_visible`);

--
-- Indexes for table `wpo_litespeed_url`
--
ALTER TABLE `wpo_litespeed_url`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `url` (`url`(191)),
  ADD KEY `cache_tags` (`cache_tags`(191));

--
-- Indexes for table `wpo_litespeed_url_file`
--
ALTER TABLE `wpo_litespeed_url_file`
  ADD PRIMARY KEY (`id`),
  ADD KEY `filename` (`filename`),
  ADD KEY `type` (`type`),
  ADD KEY `url_id_2` (`url_id`,`vary`,`type`),
  ADD KEY `filename_2` (`filename`,`expired`),
  ADD KEY `url_id` (`url_id`,`expired`);

--
-- Indexes for table `wpo_options`
--
ALTER TABLE `wpo_options`
  ADD PRIMARY KEY (`option_id`),
  ADD UNIQUE KEY `option_name` (`option_name`),
  ADD KEY `autoload` (`autoload`);

--
-- Indexes for table `wpo_postmeta`
--
ALTER TABLE `wpo_postmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `post_id` (`post_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpo_posts`
--
ALTER TABLE `wpo_posts`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `post_name` (`post_name`(191)),
  ADD KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  ADD KEY `post_parent` (`post_parent`),
  ADD KEY `post_author` (`post_author`),
  ADD KEY `type_status_author` (`post_type`,`post_status`,`post_author`);

--
-- Indexes for table `wpo_termmeta`
--
ALTER TABLE `wpo_termmeta`
  ADD PRIMARY KEY (`meta_id`),
  ADD KEY `term_id` (`term_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpo_terms`
--
ALTER TABLE `wpo_terms`
  ADD PRIMARY KEY (`term_id`),
  ADD KEY `slug` (`slug`(191)),
  ADD KEY `name` (`name`(191));

--
-- Indexes for table `wpo_term_relationships`
--
ALTER TABLE `wpo_term_relationships`
  ADD PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  ADD KEY `term_taxonomy_id` (`term_taxonomy_id`);

--
-- Indexes for table `wpo_term_taxonomy`
--
ALTER TABLE `wpo_term_taxonomy`
  ADD PRIMARY KEY (`term_taxonomy_id`),
  ADD UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  ADD KEY `taxonomy` (`taxonomy`);

--
-- Indexes for table `wpo_usermeta`
--
ALTER TABLE `wpo_usermeta`
  ADD PRIMARY KEY (`umeta_id`),
  ADD KEY `user_id` (`user_id`),
  ADD KEY `meta_key` (`meta_key`(191));

--
-- Indexes for table `wpo_users`
--
ALTER TABLE `wpo_users`
  ADD PRIMARY KEY (`ID`),
  ADD KEY `user_login_key` (`user_login`),
  ADD KEY `user_nicename` (`user_nicename`),
  ADD KEY `user_email` (`user_email`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `wpo_commentmeta`
--
ALTER TABLE `wpo_commentmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_comments`
--
ALTER TABLE `wpo_comments`
  MODIFY `comment_ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `wpo_e_events`
--
ALTER TABLE `wpo_e_events`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_e_notes`
--
ALTER TABLE `wpo_e_notes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_e_notes_users_relations`
--
ALTER TABLE `wpo_e_notes_users_relations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_e_submissions`
--
ALTER TABLE `wpo_e_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_e_submissions_actions_log`
--
ALTER TABLE `wpo_e_submissions_actions_log`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_e_submissions_values`
--
ALTER TABLE `wpo_e_submissions_values`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_links`
--
ALTER TABLE `wpo_links`
  MODIFY `link_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_litespeed_url`
--
ALTER TABLE `wpo_litespeed_url`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_litespeed_url_file`
--
ALTER TABLE `wpo_litespeed_url_file`
  MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_options`
--
ALTER TABLE `wpo_options`
  MODIFY `option_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2170;

--
-- AUTO_INCREMENT for table `wpo_postmeta`
--
ALTER TABLE `wpo_postmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11372;

--
-- AUTO_INCREMENT for table `wpo_posts`
--
ALTER TABLE `wpo_posts`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1165;

--
-- AUTO_INCREMENT for table `wpo_termmeta`
--
ALTER TABLE `wpo_termmeta`
  MODIFY `meta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `wpo_terms`
--
ALTER TABLE `wpo_terms`
  MODIFY `term_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `wpo_term_taxonomy`
--
ALTER TABLE `wpo_term_taxonomy`
  MODIFY `term_taxonomy_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `wpo_usermeta`
--
ALTER TABLE `wpo_usermeta`
  MODIFY `umeta_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=45;

--
-- AUTO_INCREMENT for table `wpo_users`
--
ALTER TABLE `wpo_users`
  MODIFY `ID` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
